Infinitie runner obstacle help
bobtheturtle
Member Posts: 226
Hi everyone,
I am having a small problem when it comes to my obstacle spawning. The obstacle(a rock) the player must jump over,are spawning too close together. How can I make the rocks spawn a minimum distance away from each other?
My obstacle spawner rules are in the image below
I am having a small problem when it comes to my obstacle spawning. The obstacle(a rock) the player must jump over,are spawning too close together. How can I make the rocks spawn a minimum distance away from each other?
My obstacle spawner rules are in the image below
Comments
http://jamie-cross.net/posts/ ✮ Udemy: Introduction to Mobile Games Development ✮ Learn Mobile Game Development in One Day Using Gamesalad ✮ My Patreon Page
If
then
Else
But in a case like this you can double layer.
If
then
else if
then
else
so : If game.timeplaying >= 200.00 then(timer(every .5)
Elsif game.timeplaying >= 100.00 then(timer(every 1.5)
Else (Timer(every 3)
OR
Timer(every 4/game.difficultylevel)
So as difficulty increase, Obs. spawn more frequently. CLick insightful Brajmahal.
Increase or decrease the 'every' value in the timer.