TweenValueAdapter: {
    read: (array: number[], offset: number) => any;
    write: (array: number[], value: any) => void;
}

类型声明

  • read: (array: number[], offset: number) => any

    Read value from number array.

    从数字数组中读取值。

  • write: (array: number[], value: any) => void

    Push value to number array.

    将值推入到数字数组中。

The Tween system uses adapters to convert different value types to and from number arrays for tween calculations.

Tween系统通过适配器来将不同的值类型与数字数组互相转换,以便进行缓动计算。