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