Same Actors but make individual on screen
My actors have a rule where if you tap them they stop moving. But with my random spawning, if more than one is on the screen in the game and you tap on one of them to stop that one, ALL of the same actors on the screen stop. Any idea how to make it so the one that is touched is the only one that stops and the rest of the "same" actors on the screen keep going?
Comments
When touch is pressed? Or when touch is pressed AND inside?
I just threw something together and did this;
Spawn actor spawned a moving actor every .3 seconds.
The spawned actor had a change velocity randomly 0,360 degrees at a speed of 50
On the spawned actor I applied Max Speed and turned maxiumum speed to 50
Rule; when touch is pressed AND inside
change attribute max speed to 0.
This stopped each individual actor and not all of them
How are you doing it?