arx-level-generator
Version:
A tool for creating Arx Fatalis maps
15 lines (14 loc) • 455 B
TypeScript
import { ScriptProperty } from '../ScriptProperty.js';
/**
* A ScriptProperty for allowing the player to jump when standing on
* this entity. This property also enables NPCs to walk on top of
* the entity.
*
* @extends ScriptProperty
* @see https://wiki.arx-libertatis.org/Script:setplatform
*/
export declare class Platform extends ScriptProperty<boolean> {
toString(): string;
static get on(): Platform;
static get off(): Platform;
}