mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-26 22:49:01 +08:00
10 lines
380 B
TypeScript
10 lines
380 B
TypeScript
|
|
/** Represents the Shadow Caster behavior.
|
|
* @see {@link https://www.construct.net/make-games/manuals/construct-3/scripting/scripting-reference/behavior-interfaces/shadow-caster | IShadowCasterBehaviorInstance documentation } */
|
|
declare class IShadowCasterBehaviorInstance<InstType> extends IBehaviorInstance<InstType>
|
|
{
|
|
height: number;
|
|
tag: string;
|
|
isEnabled: boolean;
|
|
}
|