Creates new API instance
Removes all entities from the list
Removes entity from the list
The entity
A map of entity references to nullify when this entity is removed
Gets the root Entity
Like Entity.addScript but works on multiple entities using a single history action.
The entities.
The name of the script.
Optional
attributes?: objectThe values of attributes. Each key is the name of the attributes and each value is the value for that attribute. Leave undefined to let the Editor set default values depending on the attribute types.
Optional
history?: booleanWhether to add a history action. Defaults to true.
Optional
index?: numberThe desired index in the entity's scripts order to add this script.
A promise
Copy specified entities to localStorage clipboard. Can be used to paste these entities later on.
The entities
Creates new entity and adds it to the hierarchy
Initial data for the entity
Optional
history?: booleanWhether to record a history action. Defaults to true.
Optional
index?: numberThe child index that this entity will have under its parent.
Optional
select?: booleanWhether to select new Entity. Defaults to false.
The new entity
Duplicates the specified entities under the same parent
The entities
Optional
history?: booleanWhether to record a history action. Defaults to true.
Optional
rename?: booleanWhether to rename the duplicated entities. Defaults to false.
Optional
select?: booleanWhether to select the new entities. Defaults to false.
The duplicated entities
Like Entity.removeScript but works on multiple entities using a single history action.
The entities.
The name of the script.
Optional
history?: booleanWhether to record a history action. Defaults to true.
Reparents entities under new parent.
The reparenting data
Optional
history?: booleanWhether to record history. Defaults to true
Optional
preserveTransform?: booleanWhether to preserve the transform of the entities. Defaults to false.
Waits for specified entity ids to be added to the scene. Once they are the callback is called with the entities as its argument.
The ids of the entities to wait for
Number of ms to wait before stopping to wait
The callback to call when all entities have been added. The signature is (Entity[]) => void.
Returns a cancel function which can be called to cancel calling the callback when the entities are added.
The entities editor API