Davide Tantillo 93c56d08d0 c3 backup
2025-11-03 15:16:29 +01: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;
}