ThreePipe
    Preparing search index...

    Interface IAnimationObject<V>

    interface IAnimationObject<V> {
        access?: string;
        animate?: (delay?: number, canComplete?: boolean) => AnimationResult;
        animSet?: IAnimSet;
        animSetParallel?: boolean;
        delay?: number;
        duration?: number;
        ease?:
            | Easing
            | "linear"
            | "easeIn"
            | "easeOut"
            | "easeInOut"
            | "circIn"
            | "circOut"
            | "circInOut"
            | "backIn"
            | "backOut"
            | "backInOut"
            | "anticipate"
            | "bounceOut"
            | "bounceIn"
            | "bounceInOut"
            | "easeInOutSine";
        name?: string;
        offsets?: number[];
        options: AnimationOptions<V>;
        result?: AnimationResult;
        targetObject?: Record<string, any>;
        uiObjectType?: string;
        uiRef?: UiObjectConfig<any, string, any>;
        updater?: TUpdaterType[];
        values: V[];
    }

    Type Parameters

    • V

    Implemented by

    Index

    Properties

    access?: string
    animate?: (delay?: number, canComplete?: boolean) => AnimationResult
    animSet?: IAnimSet
    animSetParallel?: boolean
    delay?: number
    duration?: number
    ease?:
        | Easing
        | "linear"
        | "easeIn"
        | "easeOut"
        | "easeInOut"
        | "circIn"
        | "circOut"
        | "circInOut"
        | "backIn"
        | "backOut"
        | "backInOut"
        | "anticipate"
        | "bounceOut"
        | "bounceIn"
        | "bounceInOut"
        | "easeInOutSine"
    name?: string
    offsets?: number[]
    options: AnimationOptions<V>
    targetObject?: Record<string, any>
    uiObjectType?: string
    uiRef?: UiObjectConfig<any, string, any>
    updater?: TUpdaterType[]
    values: V[]