prosperon/docs/scripting.md

708 B

Yugine Scripting Guide

Script hooks exist to allow to modification of the game.

|config.js|called before any game play, including play from editor| |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| |dbgret.js|called when play in editor returns to editor|

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