arx-level-generator
Version:
A tool for creating Arx Fatalis maps
13 lines (12 loc) • 370 B
TypeScript
import { ScriptProperty } from '../ScriptProperty.js';
/**
* A ScriptProperty for specifying whether an entity has a shadow or not
*
* @extends ScriptProperty
* @see https://wiki.arx-libertatis.org/Script:setshadow
*/
export declare class Shadow extends ScriptProperty<boolean> {
toString(): string;
static get on(): Shadow;
static get off(): Shadow;
}