sprunk-engine
    Preparing search index...

    A RootGameObject is a special type of GameObject that is the root of a tree of GameObjects. It contains additional information about the global game world instance.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    gameWindowInstance: GameEngineWindow

    The global game window instance.

    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

    • get parent(): null | GameObject

      Get the parent of this GameObject or null if it's root or not already attached to a tree.

      Returns null | GameObject

    • set parent(value: null | GameObject): void
      Protected

      Set the parent of this GameObject. This should only be used internally by the engine.

      Parameters

      Returns void

    Methods

    • 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

    • 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