Skip to content

Instantly share code, notes, and snippets.

@flushpot1125
Created October 3, 2020 21:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flushpot1125/5fff808070bde2abe694cd2723fbf9fe to your computer and use it in GitHub Desktop.
Save flushpot1125/5fff808070bde2abe694cd2723fbf9fe to your computer and use it in GitHub Desktop.
/**
* 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