Constructor. Pass a 2D WorldConfig to the parent class and initialise the default 2D Camera
the 2D WorldConfig
Concrete 2D active Camera
Concrete mapping of named 2D Cameras
Get the 2D World dimensions
Retrieve the number of Entities in play
the number of active Entities
Add a 2D Camera to the World
the 2D Camera to add
Prepare a list of Entities to be added to the Game on the next frame
the Entities to add
Prepare an Entity to be added to the Game on the next frame
the Entity to add
Purge all active Entities immediately
Filter the active Entities by a given Component name. Filter results are cached to optimise frame-to-frame filters
the name of the Component to filter by
the list of Entities with the Component
Filter Entities from a given source by a given Component name. Filter results are cached to optimise frame-to-frame filters
the Entity list to treat as the filter source
an identifier for the filter result, used to avoid conflicts for similar filters across disparate sources
the list of Entities from the source with the Component
Filter the active Entities by a given list of Component names. Filter results are cached to optimise frame-to-frame filters
the names of the Components to filter by
the list of Entities with the Components
Filter the Entities from a given source by a given list of Component names. Filter results are cached to optimise frame-to-frame filters
the Entity list to treat as the filter source
an identifier for the filter result, used to avoid conflicts for similar filters across disparate sources
the names of the Components to filter by
the list of Entities from the source with the Components
Filter the active Entities by a given tag. Filter results are cached to optimise frame-to-frame filters
the tag to filter by
the list of Entities with the tag
Filter the active Entities by a given list of tags. Filter results are cached to optimise frame-to-frame filters
the tags to filter by
the list of Entities with the tags
Retrieve a named 2D Camera
Throws an error if the Camera is not found for runtime safety
the name of the 2D Camera to retrieve
the named 2D Camera
Remove a Camera by name
the name of the Camera to remove
Prepare a list of Entities to be removed from the Game on the next frame
the Entities to remove
Prepare an Entity to be removed from the Game on the next frame
the Entity to remove
Frame render method. Render all active and renderable Entities.
Processes Entities grouped by shader+model combinations so as to reduce the amount of GL buffering required and render in batches
Switch to the named Camera
Throws an error if the desired Camera is not found for runtime safety
the name of the Camera to switch to
Frame update method. Process the Entity addList and removeList, then run all active Entities' frame update methods
the Game the EntityManager is running within
the frame delta as calculated by the Game
Concrete 3D World, a WorldManager setting out 2D-specific properties and behavior, providing type safety for Aura2D
NB: World (0,0) is considered to be in the center, with: - positive X -> right - positive Y -> up ...and World coordinate limits: - left : -dimensions.x / 2 - right : dimensions.x / 2 - bottom : -dimensions.y / 2 - top : dimensions.y / 2