Scene Controller
- Overview
- API
- Example
To get started with manager framework, the first thing you do is extend from either
- SceneController - uses synchronus bootstraping
- AsyncSceneController - uses async bootstrapping (IEnumerator)
both these base classes are abstract with just one member Bootstrap()
note
Script execution order for Scene Controller is -1200
SceneController also has a PosBootstrap
event which is fired when all managers have been initialized.
working on a tool to auto-generate api docs.
SceneController
Notice the IEnumerator
in Bootstrap, in case of async
AsyncSceneController