Hi,
I'm using an instance variable to make a sprite change into one of five different costumes. The problem is every time a sprite change is triggered, it goes back to the 'default' sprite on moving to another layout. How do I make the game "remember" the current costume?
Develop games in your browser. Powerful, performant & highly capable.
Use a global variable instead. Global variables persist across layouts.
Thanks oosyrag.