mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-25 11:11:24 +08:00
10 lines
362 B
TypeScript
10 lines
362 B
TypeScript
|
|
/** Represents the Rotate behavior.
|
|
* @see {@link https://www.construct.net/make-games/manuals/construct-3/scripting/scripting-reference/behavior-interfaces/rotate | IRotateBehaviorInstance documentation } */
|
|
declare class IRotateBehaviorInstance<InstType> extends IBehaviorInstance<InstType>
|
|
{
|
|
speed: number;
|
|
acceleration: number;
|
|
isEnabled: boolean;
|
|
}
|