class App
- App
- Scar::App
- Reference
- Object
Defined in:
main.crInstance Method Summary
-
#init
App specific initialization
-
#render(dt)
App rendering logic
-
#update(dt)
App update logic
Instance Method Detail
def init
#
Description copied from class Scar::App
App specific initialization
e. g. loading configuration, binding inputs, loading textures, ..
def render(dt)
#
Description copied from class Scar::App
App rendering logic
This method is executed on every frame before all System
and Object
rendering methods.
def update(dt)
#
Description copied from class Scar::App
App update logic
This method is executed on every frame before all System
and Object
update methods.