@fishjam-cloud/js-server-sdk - v0.29.0
    Preparing search index...

    Interface Transition

    Transition

    interface Transition {
        durationMs: number;
        easingFunction?: null | EasingFunction;
        shouldInterrupt?: null | boolean;
    }
    Index

    Properties

    durationMs: number

    Duration of a transition in milliseconds.

    Transition

    easingFunction?: null | EasingFunction

    (default="linear") Easing function to be used for the transition.

    Transition

    shouldInterrupt?: null | boolean

    (default=false) On scene update, if there is already a transition in progress, it will be interrupted and the new transition will start from the current state.

    Transition