@tsdotnet/tween-factory - v3.0.13
    Preparing search index...

    A tween that is being configured.

    interface Tween {
        events: Events;
        add<T extends object>(
            target: T,
            endValues: Partial<NumericValues<T>>,
            easing?: EasingFunction,
        ): Tween;
        chain(behavior?: Settings): Tween;
        start(timeFrame?: default): ActiveTween;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    events: Events

    For listening to life-cycle events.

    Methods

    • Allows for tweens to occur in sequence.

      Parameters

      Returns Tween

      InvalidOperationException if the tween has already been started.