mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-27 12:11:22 +08:00
14 lines
459 B
TypeScript
14 lines
459 B
TypeScript
|
|
/** Represents the Bullet behavior.
|
|
* @see {@link https://www.construct.net/make-games/manuals/construct-3/scripting/scripting-reference/behavior-interfaces/bullet | IBulletBehaviorInstance documentation } */
|
|
declare class IBulletBehaviorInstance<InstType> extends IBehaviorInstance<InstType>
|
|
{
|
|
speed: number;
|
|
acceleration: number;
|
|
gravity: number;
|
|
angleOfMotion: number;
|
|
bounceOffSolids: boolean;
|
|
distanceTravelled: number;
|
|
isEnabled: boolean;
|
|
}
|