Replacing Actor from a random group of actors
Every so many seconds I want to replace an anctor with 1 actor from a small group of actors. An example would be replacing a initial blue square with either a purple, red or yellow square. The timer part is easy. How would a I randomly change the main color square every couple seconds with a different color sqaure?
Comments
Then make a attribute called "color".
Group {
Color = random(1,3)
When color = 1
change image "blue image"
When color = 2
change image "red image"
When color = 3
change image "green image"
}