Type Alias QuickTweenOptions
type QuickTweenOptions = {
duration?: number;
ease?: EasingReference;
interpolate?: InterpolateFunctionName;
}
duration?: number;
ease?: EasingReference;
interpolate?: InterpolateFunctionName;
}
Properties
Optionalduration
duration?: number
Duration in seconds.
Optionalease
Easing function or easing function name; controls the time variable for interpolation. Default: cubicOut
Optionalinterpolate
Interpolation function name. Currently, only lerp is supported and doesn't need to be specified.
Defines the quick tweening options.