How do i make a Endless Vertical spawner game like "Smash Ant's"
StormCloudGames
Member, PRO Posts: 6
<----NEW DEV! I'm trying to make a game like Smash Ant's. It's a vertical endless spawner. I need tips on how to spawn them randomly [at the top so they can fall to the bottom] [portrait] and also to increase the number of "ant's" and the speed of said ant's. Any tip's are much appreciated.
Comments
create new actor name it spawner. put it outside of the gameplay screen and give this rule
timer every random(1,5) seconds
spawn actor ants
give positions.
with this you can spawn your ants random every 1 to 5 and its endless.
For other questions read some tutorials you need to work with game attributes.
Thank you so much!!!