sprunk-engine
    Preparing search index...

    A GameObject is the base class for all entities objects in the game. It is a container for behaviors and other GameObjects.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    name: string

    The name of this GameObject

    onBehaviorAdded: Event<Behavior> = ...

    Event that is triggered when a behavior is added to this GameObject. The behavior is passed as an argument.

    onBehaviorListChanged: Event<void> = ...

    Event that is triggered when the list of behaviors attached to this GameObject changes.

    onBehaviorRemoved: Event<Behavior> = ...

    Event that is triggered when a behavior is removed from this GameObject. The behavior is passed as an argument.

    onChildAdded: Event<GameObject> = ...

    Event that is triggered when a child is added to this GameObject. The child is passed as an argument.

    onChildRemoved: Event<GameObject> = ...

    Event that is triggered when a child is removed from this GameObject. The child is passed as an argument.

    transform: Transform = ...

    The position, rotation, and scale of this GameObject.

    Accessors

    Methods

    • Detach all behaviors and children from this GameObject. Remove this GameObject from its parent.

      Returns void

    • 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.

      Parameters

      • target: any

        The target object to fill dependencies for.

      Returns void

    • Returns all children of this GameObject, including children of children, and so on. All the hierarchy. Does not include the GameObject itself.

      Returns GameObject[]

    • Get all behaviors of a specific type attached to this GameObject.

      Type Parameters

      Parameters

      • BehaviorClass: new (...args: any[]) => T

      Returns T[]

    • Get the first behavior of a specific type attached to this GameObject or null if none is found.

      Type Parameters

      Parameters

      • BehaviorClass: new (...args: any[]) => T

      Returns null | T

    • Protected

      When the GameObject is detached from the tree. (After destroy / cleanup)

      Returns void

    • Protected

      When the GameObject is attached to the tree.

      Returns void