sprunk-engine
    Preparing search index...

    Class InputBehaviorAbstract

    A behavior that subscribes to input events and converts them into a game logic. The game logic actions will be executed by a LogicBehavior.

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    • Detach this behavior from the GameObject it is attached to.

      Parameters

      • from: GameObject

        The GameObject to detach this behavior from.

      Returns void

      Error if the behavior is not attached to the GameObject.

    • Get the first behavior of a specific type (only from logic type to keep clean separation of concerns) attached to this GameObject or null if none is found.

      Type Parameters

      Parameters

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

      Returns null | T

    • Like onEnable, but should only be for internal use, so some non-abstact direct behaviors could expose attachedOn to the user.

      Parameters

      • attachedOn: GameObject

        The GameObject this behavior is attached to.

      Returns void

      Error if the behavior is already attached to a GameObject.

    • Protected

      Called every frame. Override this method to add custom behavior.

      Parameters

      • _deltaTime: number

        The time in seconds since the last frame.

        • This method should not be called directly except by the GameEngineWindowComponent.

      Returns void