Hosanna UI API v1.30.2-next
    Preparing search index...

    Interface ITickable

    Interface for objects that can be ticked (updated) over time.

    interface ITickable {
        _tick(delta: number): void;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Methods

    Methods

    • Called with the time delta to update the object.

      Parameters

      • delta: number

        The time delta since the last tick.

      Returns void