mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
14 lines
487 B
TypeScript
14 lines
487 B
TypeScript
|
|
/** Represents an actively running tween.
|
|
* @see {@link https://www.construct.net/make-games/manuals/construct-3/scripting/scripting-reference/interfaces/itweenstate | ITweenState documentation } */
|
|
declare class ITweenState extends ITimelineStateBase
|
|
{
|
|
stop(): void;
|
|
setEase(easeName: string): void;
|
|
readonly instance: IWorldInstance;
|
|
isDestroyOnComplete: boolean;
|
|
readonly value: number;
|
|
readonly finished: Promise<void>;
|
|
readonly released: Promise<void>;
|
|
}
|