QuickTweenOptions: {
    duration?: number;
    ease?: EasingReference;
    interpolate?: InterpolateFunctionName;
}

Defines the quick tweening options.

Type declaration

  • Optionalduration?: number

    Duration in seconds; default: 1

  • Optionalease?: EasingReference

    Easing function or easing function name; controls the time variable for interpolation. Default: cubicOut

  • Optionalinterpolate?: InterpolateFunctionName

    Interpolation function name. Currently, only lerp is supported and doesn't need to be specified.