Children of the entity
ReadonlyidId of the entity
ReadonlynameName of the entity
Parent of the entity
Adds an event listener to the event target.
Type of event to listen for
Function to call when the event is triggered
Dispatches an event to the event target.
Events are processed in the engine event queue at the beginning of each frame in order that they were dispatched.
Type of event to dispatch
Optionalpayload: Record<string, unknown>
Payload of the event
Dispatches an event to the event target immediately.
Events are processed immediately and not added to the engine event queue.
Type of event to dispatch
Optionalpayload: Record<string, unknown>
Payload of the event
Finds a child entity by a predicate function.
A function that runs on each child entity and should return true if the child entity matches the predicate or false otherwise
Whether to search recursively through the children
Child entity or undefined
Finds a child entity by its id.
Id of the child entity
Whether to search recursively through the children
Child entity or undefined
Finds a child entity by its name.
Name of the child entity
Whether to search recursively through the children
Child entity or undefined
Gets the event listeners for the event target.
Type of event to get the listeners for
Event listeners for the event target
Removes the entity from its parent.
Removes all event listeners from the event target.
Removes an event listener from the event target.
Type of event to remove the listener for
Function to remove the listener for
Base class for all entities.