Color Change
Hey guys, I was wondering if this is possible and how to do it. I have some actors that are a certain color and when you press it, it deletes and adds a point. Press the wrong color and it resets the game. What I want to do is make it so that an actor changes colors and when it gets to the correct color it deletes and adds a point. When you press it and it's the wrong color, it resets. How would I do this?
Comments
. . . . . . . . . . . . . . .
Timer - every 1 second generate a random number between 1-4.
Rule, if number is 1 spawn (or move into position / recycle) RED actor
On touch reset.
After 1 second destroy actor (or move back to original position / recycle)
Rule, if number is 2 spawn (or move into position / recycle) BLUE actor
On touch reset.
After 1 second destroy actor (or move back to orginal position / recycle)
Rule, if number is 3 spawn (or move into position / recycle) GREEN actor
On touch change attribute POINTS to POINTS + 1.
After 1 second destroy actor (or move back to orginal position / recycle)
Rule, if number is 4 spawn (or move into position / recycle) YELLOW actor
On touch reset.
After 1 second destroy actor (or move back to orginal position / recycle)
That will look nice !