Hello! I want to make my object blink at the end of the game, before the Game Over Sprite shows. I have this piece of code:
when game over
-> (object) Flash: Flash 0.1 on 0.1 off for 1.0 seconds
-> (System) Set object speed to 1
-> (System) Wait 1.0 seconds
-> (GameOver) Set Visible
So my object has the Flash behavior and it should stop and blink for 1 second. However it seems that this is not working. The object disappears completely. I made the Game Over sprite transparent and I noticed that it actually starts blinking after that 1 second pass (so basically right after the Game Over sprite covers it), even if that action is in my code before the "Wait 1.0 seconds". Can someone tell me how to make it work the way I want? Thank you!