public interface IGameInterface
| Modifier and Type | Interface and Description |
|---|---|
static interface |
IGameInterface.OnCreateResourcesCallback |
static interface |
IGameInterface.OnCreateSceneCallback |
static interface |
IGameInterface.OnPopulateSceneCallback |
| Modifier and Type | Method and Description |
|---|---|
Engine |
onCreateEngine(EngineOptions pEngineOptions) |
EngineOptions |
onCreateEngineOptions() |
void |
onCreateResources(IGameInterface.OnCreateResourcesCallback pOnCreateResourcesCallback) |
void |
onCreateScene(IGameInterface.OnCreateSceneCallback pOnCreateSceneCallback) |
void |
onDestroyResources() |
void |
onGameCreated() |
void |
onGameDestroyed() |
void |
onPauseGame() |
void |
onPopulateScene(Scene pScene,
IGameInterface.OnPopulateSceneCallback pOnPopulateSceneCallback) |
void |
onReloadResources() |
void |
onResumeGame() |
EngineOptions onCreateEngineOptions()
Engine onCreateEngine(EngineOptions pEngineOptions)
void onCreateResources(IGameInterface.OnCreateResourcesCallback pOnCreateResourcesCallback) throws java.lang.Exception
java.lang.Exceptionvoid onCreateScene(IGameInterface.OnCreateSceneCallback pOnCreateSceneCallback) throws java.lang.Exception
java.lang.Exceptionvoid onPopulateScene(Scene pScene, IGameInterface.OnPopulateSceneCallback pOnPopulateSceneCallback) throws java.lang.Exception
java.lang.Exceptionvoid onReloadResources()
throws java.lang.Exception
java.lang.Exceptionvoid onDestroyResources()
throws java.lang.Exception
java.lang.Exceptionvoid onGameCreated()
void onResumeGame()
void onPauseGame()
void onGameDestroyed()