• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

2 paths

S

spanner206

Guest
how would i make enemys run across two seperate paths in one wave?
 

FrostyCat

Redemption Seeker
By choosing one of the paths at random and then starting that chosen one?
Code:
path_start(choose(path_a, path_b), 4, path_action_stop, true);
 
S

spanner206

Guest
would i just set this up in my current room controller or set a new one up for that specific room?
 
S

spanner206

Guest
By choosing one of the paths at random and then starting that chosen one?
Code:
path_start(choose(path_a, path_b), 4, path_action_stop, true);
would i just set this up in my current room controller or set a new one up for that specific room?
 
Top