Global timer registry and factory; timers registered here are automatically updated each physics tick.
Lua full name: lysa.Timers
|
| Timer | create (wait_time: number, one_shot: boolean, auto_start: boolean, callback: fun()) |
| | Creates a Timer with a Lua callback, registers it with the engine, and returns it. More...
|
| |
| Timer | create (wait_time: number, one_shot: boolean, callback: fun()) |
| | Creates a Timer with a Lua callback (auto_start defaults to true), registers it with the engine, and returns it. More...
|
| |
| Timer | create (wait_time: number, callback: fun()) |
| | Creates a Timer with a Lua callback (one_shot and auto_start default to true), registers it with the engine, and returns it. More...
|
| |