Retrieves all the tags that have been added to this entity.
Add a component to an Entity, doh.
Clears all components from an Entity
Remove all tags on an entity
Destroy an entity. Actual destruction is deferred until after the next pass of systems. This gives the systems a chance to do any cleanup that might be needed.
Sets the state of the entity to 'created'. that's it.
Get a component that belongs to an entity.
Get all components that have been added to an entity, via a ComponentCollection
Determines if an entity has a component related to it.
Check to see if an entity tagged with a given tag.
Remove a component from an entity.
A component class, eg MyComponent
Convert Entity to a DevEntity. Very helpful in for debugging.
Generated using TypeDoc
Get all components that have been added to an entity, via a ComponentCollection. Does the same thing as entityInstance.getAll().