Adds a component to the entity
The Entity to which the component will be added
The class of the component
The instance of the component
Adds an instance of a component to an entity
The Entity to which the component will be added
The instance of the component
The instance of the component
Creates multiple entities based on an array of component collections
An array of collections of component instances and component classes
An array with the created entities, in the same order of the collections of components
Creates an entity without component
The created Entity
Creates an Entity based on an Archetype
The Archetype to create the Entity
The created Entity
// Using ArchetypeComponent to define components
const entity = entityManager.createEntity({
components: [
{type: Transform, data: {position: new Vector2(100, 100)}},
{type: SpriteRenderer, data: {image: "images/player.png"}},
{type: Player},
],
children: [
{
components: [
{type: Transform, data: {position: new Vector2(8, 0)}},
{type: SpriteRenderer, data: {image: "images/sword.png"}},
{type: Weapon, data: {damage: 10}},
],
},
{
components: [
{type: Transform, data: {position: new Vector2(-8, 0)}},
{type: SpriteRenderer, data: {image: "images/shield.png"}},
{type: Shield, data: {defense: 5}, enabled: false},
],
},
{
components: [
{type: Transform, data: {position: new Vector2(8, 0)}},
{type: SpriteRenderer, data: {image: "images/staf.png"}},
{type: Staff, data: {mana: 5}},
],
enabled: false,
}
]
});
// Using Component instances as templates
const entity = entityManager.createEntity({
components: [
new Transform({position: new Vector2(100, 100)}),
new SpriteRenderer({image: "images/player.png"}),
new Player(),
],
children: [
{
components: [
new Transform({position: new Vector2(8, 0)}),
new SpriteRenderer({image: "images/sword.png"}),
new Weapon({damage: 10}),
],
},
{
components: [
new Transform({position: new Vector2(-8, 0)}),
new SpriteRenderer({image: "images/shield.png"}),
new Shield({defense: 5}),
],
},
{
components: [
new Transform({position: new Vector2(8, 0)}),
new SpriteRenderer({image: "images/staf.png"}),
new Staff({mana: 5}),
],
enabled: false,
}
]
});
Creates an Entity based on a collection of Component instances and ComponentTypes
A collection of component instances and component classes
Optional
parent: numberThe created Entity
Disables a component instance
The component instance
Disables a component by its entity and type
The target entity
The component class
Disable all Entities that have a component of the given type
The class of the component
Disables an entity.
The entity's components will not be included in the search
results
and therefore will not be processed by their respective systems
(the engine built-in systems use the search
method to retrieve the entities).
If the entity has children, they will also be disabled.
The entity to be disabled
Enables a component instance
The component instance
Enables a component by its entity and type
The target entity
The component class
Enable all Entities that have a component of the given type
The class of the component
Enables an Entity.
The entity's components will be included in the search
results
and therefore will be processed by their respective systems
(the engine built-in systems use the search
method to retrieve the entities).
If the entity has children, they will also be enabled, except for those that have been manually disabled.
The entity to be enabled
Searches for and returns an entity for the component instance
The component instance
The found Entity
Returns TRUE if the Entity has a component of the given type, otherwise it returns FALSE.
The entity to verify
The class of the component
boolean
Returns TRUE if the component is enabled, otherwise it returns FALSE
The component instance
boolean
Returns TRUE if the component is enabled, otherwise it returns FALSE
The target entity
The component class
boolean
Removes the component instance from its Entity
The component instance
Removes a component from the entity according to the given type
The target entity
The component class
Performs a search for entities given a component type.
This method returns a collection of objects of type SearchResult, which has the entity found, and the instance of the component.
This search can be filtered by passing as a second argument an instance of SearchCriteria, which performs a match between the attributes of the component and the given value.
The third argument determines if disabled entities or components are included in the search result,\its default value is FALSE.
The component class
Optional
criteria: SearchCriteriaThe search criteria
Optional
includeDisabled: booleanTRUE to incluide disabled entities and components, FALSE otherwise
SearchResult
const searchResult = entityManager.search(SpriteRenderer);
searchResult.forEach(({component, entity}) => {
// do something with the component and entity
})
const searchResult = entityManager.search(Enemy, {status: "alive"});
searchResult.forEach(({component, entity}) => {
// do something with the component and entity
})
const searchResult = entityManager.search(Enemy, {status: "dead"}, true);
searchResult.forEach(({component, entity}) => {
// do something with the component and entity
})
Performs a search for entities given a component type.
This method returns a collection of objects of type SearchResult, which has the entity found, and the instance of the component.
The second argument determines if disabled entities or components are included in the search result,\its default value is FALSE.
The component class
Optional
includeDisabled: booleanTRUE to incluide disabled entities and components, FALSE otherwise
SearchResult
const searchResult = entityManager.search(SpriteRenderer);
searchResult.forEach(({component, entity}) => {
// do something with the component and entity
})
const searchResult = entityManager.search(Enemy, true);
searchResult.forEach(({component, entity}) => {
// do something with the component and entity
})
Performs an entity search given a collection of component types.
The entities found must have an instance of all the given component types.
This method returns a collection of Entities.
A collection of component classes
A collection of entities
Performs a search for entities that have a component of the given type and are children of the parent entity.
This method returns a collection of objects of type SearchResult, which has the entity found, and the instance of the component.
The third argument determines if disabled entities or components are included in the search result,\its default value is FALSE.
The parent entity
The component class
TRUE to incluide disabled entities and components, FALSE otherwise
SearchResult
const searchResult = entityManager.searchInChildren(parent, SpriteRenderer);
searchResult.forEach(({component, entity}) => {
// do something with the component and entity
})
const searchResult = entityManager.searchInChildren(parent, SpriteRenderer, true);
searchResult.forEach(({component, entity}) => {
// do something with the component and entity
})
The EntityManager manages the entities and components.
It provides the necessary methods for reading and writing entities and components.