Defines the quick tweening options.

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

Properties

duration?: number

Duration in seconds.

1

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

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