The quickTo callback function returned from AnimationGroupAPI.quickTo. Extends QuickToCallback accepting functions for setting each instance of group with new position data and / or options.

interface GroupQuickToCallback {
    keys: AnimationKey[];
    options: (
        options: QuickTweenOptions | GroupQuickTweenOptionsCallback,
    ) => GroupQuickToCallback;
    (arg: GroupDataCallback): void;
    (...args: (string | number)[]): void;
    (arg: Partial<{ [key in AnimationKey]: string | number }>): void;
}
Hierarchy
  • Parameters

    • arg: GroupDataCallback

      A callback function invoked for unique positional data for each instance of the group.

    Returns void

  • Parameters

    • ...args: (string | number)[]

      Individual numbers or relative strings corresponding to the order in which animation keys are specified.

    Returns void

  • Parameters

    • arg: Partial<{ [key in AnimationKey]: string | number }>

      A single object with animation keys specified and numerical or relative string values.

    Returns void

Index

Properties

Properties

keys: AnimationKey[]

The keys assigned for this quickTo callback.

Sets options of quickTo tween.

Type Declaration