Copy link to clipboard
Copied
I'm using frames to make my test app, and I added a custom cursor because I'm bored of the old plain cursor. The frames duplicated my cursor whenever it restarts from the first. How do I fix this?
Copy link to clipboard
Copied
put the code you don't want to repeat within an execute once conditional:
if(!this.executed){
// code you don't want to repeat
this.executed=true;
}