Davide Tantillo 50e8104e7c c3 backup
2025-10-14 12:08:58 +02:00

15 lines
480 B
TypeScript

type ShadowLightCastFromMode = "all" | "same-tag" | "different-tag";
/** Represents the Shadow Light object.
* @see {@link https://www.construct.net/make-games/manuals/construct-3/scripting/scripting-reference/plugin-interfaces/shadow-light | IShadowLightInstance documentation } */
declare class IShadowLightInstance extends IWorldInstance
{
lightX: number;
lightY: number;
lightHeight: number;
shadowColor: Vec3Arr;
tag: string;
castFrom: ShadowLightCastFromMode;
}