/** | |
* Called on the node is being initialized. | |
* This function is called immediatly after the constructor has been called. | |
*/ | |
public onInitialize(): void { | |
// ... | |
} | |
/** | |
* Called on the scene starts. | |
*/ | |
public onStart(): void { | |
// ... | |
} | |
/** | |
* Called each frame. | |
*/ | |
public onUpdate(): void { | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment