Create a new GameObject.
The name of the GameObject.
The name of this GameObject
Readonly
onEvent that is triggered when a behavior is added to this GameObject. The behavior is passed as an argument.
Readonly
onEvent that is triggered when the list of behaviors attached to this GameObject changes.
Readonly
onEvent that is triggered when a behavior is removed from this GameObject. The behavior is passed as an argument.
Readonly
onEvent that is triggered when a child is added to this GameObject. The child is passed as an argument.
Readonly
onEvent that is triggered when a child is removed from this GameObject. The child is passed as an argument.
Readonly
transformThe position, rotation, and scale of this GameObject.
Get only first-level children of this GameObject.
Get the parent of this GameObject or null if it's root or not already attached to a tree.
Protected
Set the parent of this GameObject. This should only be used internally by the engine.
Get the root of the tree this GameObject is attached to.
Attach a behavior to this GameObject. It will be updated every frame.
Detach all behaviors and children from this GameObject. Remove this GameObject from its parent.
Fill dependencies in a target object using this GameObject's container and its parents (depending on decorators). If an Inject() decorator is found, the dependency will be resolved from this GameObject's container. (Recursively if specified) If a InjectGlobal() decorator is found, the dependency will be resolved from the engine's container.
The target object to fill dependencies for.
Get all behaviors attached to this GameObject.
Returns all children of this GameObject, including children of children, and so on. All the hierarchy. Does not include the GameObject itself.
Protected
onProtected
When the GameObject is detached from the tree. (After destroy / cleanup)
Protected
onProtected
When the GameObject is attached to the tree.
Protected
onProtected
Called when parent changed
Remove a behavior from this GameObject. It will no longer be updated.
A GameObject is the base class for all entities objects in the game. It is a container for behaviors and other GameObjects.