Infinitie runner obstacle help
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
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.