| com.artemis.Entity.addComponent(Component)
|
| com.artemis.Entity.addComponent(Component, ComponentType)
|
| com.artemis.World.addEntity(Entity)
internally managed by artemis
|
| com.artemis.Entity.addToWorld()
Automatically managed.
|
| com.artemis.World.changedEntity(Entity)
does nothing, internally tracked by artemis now.
|
| com.artemis.Entity.changedInWorld()
Automatically managed.
|
| com.artemis.Entity.createComponent(Class)
|
| com.artemis.World.deleteEntity(Entity)
|
| com.artemis.World.deleteManager(Manager)
A world should be static once initialized
|
| com.artemis.World.deleteSystem(EntitySystem)
A world should be static once initialized
|
| com.artemis.Entity.disable()
create your own components to track state.
|
| com.artemis.World.disable(Entity)
create your own components to track state.
|
| com.artemis.EntityObserver.disabled(Entity)
create your own components to track state.
|
| com.artemis.Entity.enable()
create your own components to track state.
|
| com.artemis.World.enable(Entity)
create your own components to track state.
|
| com.artemis.EntityManager.enabled(Entity)
create your own components to track state.
|
| com.artemis.EntityObserver.enabled(Entity)
create your own components to track state.
|
| com.artemis.utils.reflect.Field.getAnnotation(Class) |
| com.artemis.utils.reflect.Method.getAnnotation(Class) |
| com.artemis.utils.reflect.ClassReflection.getAnnotation(Class, Class) |
| com.artemis.utils.reflect.Field.hasAnnotation(Class) |
| com.artemis.utils.reflect.Method.hasAnnotation(Class) |
| com.artemis.utils.reflect.ClassReflection.hasAnnotation(Class, Class) |
| com.artemis.Entity.isEnabled()
use components to implement state instead.
|
| com.artemis.EntityManager.isEnabled(int)
create your own components to track state.
|
| com.artemis.Entity.removeComponent(Class extends Component>)
|
| com.artemis.Entity.removeComponent(Component)
|
| com.artemis.Entity.removeComponent(ComponentType)
|
| com.artemis.systems.DelayedEntityProcessingSystem.restart(float)
bugged and unnecessary. don't use.
|