-
Notifications
You must be signed in to change notification settings - Fork 117
Entity
Daan van Yperen edited this page Sep 29, 2015
·
50 revisions
Entities are containers of related components.
int e = world.create();
In artemis-odb, entities are represented by an int
for performance reasons. For convenience, Entity
class is also supported.
Events for created, altered or removed entities are postponed until the system is done processing. This removes the need for systems to defend their subscription lists and allows for cleaner code and better performance.
world.delete(e);
See Components
- Overview
- Concepts
- Getting Started
- Using
- More guides
- Plugins
- Game Gallery
- Tools and Frameworks
- API reference