This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
Blobledoodes/objects/obj_bloblehop_generator/Step_0.gml
2019-07-17 13:39:30 -06:00

17 lines
No EOL
223 B
Text

if ygen <= ylim
{
inst =instance_create_depth((irandom_range(xlim, xlimh)), ygen, -2, obj_bloblehop_platform)
with inst
{
image_xscale=xscale
image_yscale=yscale
}
ygen += ystep
}
else
{
instance_destroy()
}