SerenityJS
    Preparing search index...

    Interface PlayerAnimationOptions

    interface PlayerAnimationOptions {
        blendOutTime?: number;
        controller?: string;
        nextState?: string;
        players?: Player[];
        stopExpression?: string;
    }
    Index

    Properties

    blendOutTime?: number

    The time it takes to blend out of the animation.

    controller?: string

    The name of the animation controller to use for this animation.

    nextState?: string

    The next state to transition to after the animation is complete.

    players?: Player[]

    The players that the animation will be visible to.

    stopExpression?: string

    The stop expression, the condition that determines when to transition to the next state.