![]() | Game Methods |
The Game type exposes the following members.
Name | Description | |
---|---|---|
![]() | AddSystemT |
Adds and initializes the system of the specified type.
|
![]() | OnGameStarted |
Called after initialization of game was done and the game was started.
|
![]() | PauseGame |
Pauses this game, stopping ticking all systems.
|
![]() | ResumeGame |
Resumes this game, continuing to tick all systems.
|
![]() | StartGame |
Starts this game, beginning to tick all systems.
|
![]() | StartGame(IAttributeTable) |
Starts this game, beginning to tick all systems.
|
![]() | StopGame |
Deinitializes and stops the game.
|
![]() | Update |
Ticks this game, allowing all systems to update themselves and
processing all game events.
|
Name | Description | |
---|---|---|
![]() | CreateEntities |
Searches for the blueprints with the specified ids and creates entities out of it.
If the blueprints are used several times, consider to fetch them from the game's
blueprint manager once and use them to create the entities.
(Defined by GameBlueprintUtils.) |
![]() | CreateEntity(String) | Overloaded.
Searches for the blueprint with the specified id and creates an entity out of it.
If the blueprint is used several times, consider to fetch the blueprint from the game's
blueprint manager once and use it to create the entities.
(Defined by GameBlueprintUtils.) |
![]() | CreateEntity(String, AttributeTable) | Overloaded.
Searches for the blueprint with the specified id and creates an entity out of it.
If the blueprint is used several times, consider to fetch the blueprint from the game's
blueprint manager once and use it to create the entities.
(Defined by GameBlueprintUtils.) |
![]() | CreateEntity(Blueprint, AttributeTable) | Overloaded.
Searches for the specified blueprint and creates an entity out of it.
(Defined by GameBlueprintUtils.) |