623 B
623 B
Yugine Scripting Guide
Script hooks exist to allow to modification of the game.
|config.js|called before any game play| |game.js|called to start the game| |editorconfig.js|called when the editor is loaded, used to personalize| |debug.js|called when play in editor is selected|
All objects in the Yugine can have an associated script. This script can perform setup, teardown, and handles responses for the object.
function | description |
---|---|
start | called when the object is loaded |
update(dt) | called once per game frame tick |
physupdate(dt) | called once per physics tick |
stop | called when the object is killed |