Type Alias QuickTweenOptions
QuickTweenOptions : {
duration?: number;
ease?: EasingReference;
interpolate?: InterpolateFunctionName;
}
duration?: number;
ease?: EasingReference;
interpolate?: InterpolateFunctionName;
}
Type declaration
Optional
duration?: numberDuration in seconds; default: 1
Optional
ease?: EasingReferenceEasing function or easing function name; controls the time variable for interpolation. Default:
cubicOut
Optional
interpolate?: InterpolateFunctionNameInterpolation function name. Currently, only
lerp
is supported and doesn't need to be specified.
Defines the quick tweening options.