arx-level-generator
Version:
A tool for creating Arx Fatalis maps
13 lines (12 loc) • 405 B
TypeScript
import { ScriptProperty } from '../ScriptProperty.js';
/**
* A ScriptProperty for setting whether an Entity can be interacted with or not
*
* @extends ScriptProperty
* @see https://wiki.arx-libertatis.org/Script:setinteractivity
*/
export declare class Interactivity extends ScriptProperty<boolean> {
toString(): string;
static get on(): Interactivity;
static get off(): Interactivity;
}