interface ITweener {
    breaking: boolean;
    breakpoint: number;
    delay: number;
    deltaValue: Readonly<ITweenValue>;
    duration: number;
    endValue: ITweenValue;
    ignoreEngineTimeScale: boolean;
    name: string;
    normalizedTime: number;
    owner: Tween;
    paused: boolean;
    repeat: number;
    startValue: ITweenValue;
    target: any;
    timeScale: number;
    userData: any;
    value: Readonly<ITweenValue>;
    yoyo: boolean;
    kill(complete?: boolean): void;
    seek(time: number): void;
}

属性

breaking: boolean

When the tweener reaches the breakpoint and ends, it is true.

当缓动到达breakpoint后结束,此值为true。

breakpoint: number

The breakpoint of the tweener. If the time reaches the breakpoint, the tweener will end.

缓动的断点时间。如果时间达到断点时间,缓动将会结束。

delay: number

Get the delay time in milliseconds.

获取延迟时间,以毫秒为单位。

deltaValue: Readonly<ITweenValue>

The difference between the value of the last update callback and the value of the current update callback.

上一次update回调与本次update回调的value值的差值。

duration: number

Get the duration of the tweener.

获取缓动的持续时间,以毫秒为单位。

endValue: ITweenValue

The end value of the tweener. Even if the tweener is running, you can still modify it.

缓动的结束值。即使tweener在运行过程中,也可以修改它。

ignoreEngineTimeScale: boolean

Whether the tweener ignores the time scale from Laya.timer.

缓动是否忽略Laya.timer的时间缩放。

name: string

The name of the Tweener.

Tweener的名称。

normalizedTime: number

The normalized time of the tweener. The value is between 0 and 1.

缓动的归一化时间。取值在 0 和 1 之间。

owner: Tween

The owner of the Tweener.

获取Tweener的拥有者。

paused: boolean

Get or set the pause state of the tweener.

获取或者设置tweener的暂停状态.

repeat: number

Get the number of repetitions of the tweener. If the repeat is 0, then the tweener will play once. If the repeat is -1, then the tweener will loop indefinitely. If the repeat is 1, then the tweener will play twice, and so on.

获取缓动的重复次数。 如果 repeat 为 0,则缓动将播放一次。如果 repeat 为 -1,则缓动将无限循环。 如果 repeat 为 1,则缓动将播放两次,依此类推。

startValue: ITweenValue

The starting value of the tweener. Even if the tweener is running, you can still modify it.

缓动的初始值。即使tweener在运行过程中,也可以修改它。

target: any

Get the target of the tweener.

获得缓动的目标对象。

timeScale: number

The time scale of the tweener.

设置缓动的时间缩放。

userData: any

The user data of the tweener.

缓动的用户数据。

value: Readonly<ITweenValue>

The current value of the tweener. You can get the tweener value at any time during the tweener.

缓动的当前值。可以在缓动进行中的任意时刻获取tweener的值。

yoyo: boolean

If yoyo is true, after the first play, the tweener will alternate back and forth.

如果 yoyo 为 true,缓动将在第一次播放后来回交替播放。

方法

  • 参数

    • 可选complete: boolean

      If true, the tweener will be set to the end state, and the complete callback will be called. If false, the complete callback will not be called.

    返回 void

    The tweener object.

    Kill the tweener. The tweener will be stopped and will be removed from the Tween system.

    结束缓动。缓动将会停止,并从缓动系统中移除。

  • 参数

    • time: number

      The time to seek to, in milliseconds.

    返回 void

    The tweener object.

    Seek the tweener to a specified time.

    将缓动播放头跳转到指定的时间。