Interface QuickToCallback
interface QuickToCallback {
keys: AnimationKey[];
options: (options: QuickTweenOptions) => QuickToCallback;
(...args: (string | number)[]): void;
(arg: Partial<{ [key in AnimationKey]: string | number }>): void;
}
keys: AnimationKey[];
options: (options: QuickTweenOptions) => QuickToCallback;
(...args: (string | number)[]): void;
(arg: Partial<{ [key in AnimationKey]: string | number }>): void;
}
Hierarchy
- QuickToCallback (View Summary)
Parameters
- ...args: (string | number)[]
Individual numbers or relative strings corresponding to the order in which animation keys are specified.
Returns void
- ...args: (string | number)[]
Parameters
- arg: Partial<{ [key in AnimationKey]: string | number }>
A single object with animation keys specified and numerical or relative string values.
Returns void
- arg: Partial<{ [key in AnimationKey]: string | number }>
Properties
Readonlykeys
The keys assigned for this quickTo callback.
Readonlyoptions
Sets options of quickTo tween.
Type Declaration
- (options: QuickTweenOptions): QuickToCallback
Parameters
- options: QuickTweenOptions
Quick tween options.
Returns QuickToCallback
This quickTo callback function.
- options: QuickTweenOptions
The
quickTocallback function returned from AnimationAPI.quickTo.