Hello,
I'm trying to make a beat-em-up in C2. so far I have 1 enemy who follows player. If my Player is left of the Enemy, Mirror... else on right, not mirrored, you get the idea. I want to spawn another Enemy at another position. How do i get each individual to face the player?
I have on EveryTick>
If Player.X < Enemy.X Enemy Set Mirrored
If Player.X > Enemy.X Enemy Set Not mirrored
Now i know this will influence all Enemy... but I want the behaviour to only affect each individual Enemy.
I hope this make sense.
Roberto