arx-level-generator
Version:
A tool for creating Arx Fatalis maps
19 lines (18 loc) • 710 B
TypeScript
import { ScriptProperty } from '../ScriptProperty.js';
/**
* A ScriptProperty for showing and hiding a good chunk of the HUD.
* This command does not fully hide the HUD, only some parts of it.
* Currently the equipment indicators, inventories and minimap remain visible.
*
* @extends ScriptProperty
* @see https://wiki.arx-libertatis.org/Script:playerinterface
*/
export declare class PlayerInterface extends ScriptProperty<boolean> {
isSliding: boolean;
constructor(value: boolean, isSliding?: boolean);
toString(): string;
static get on(): PlayerInterface;
static get off(): PlayerInterface;
static get slideIn(): PlayerInterface;
static get slideOut(): PlayerInterface;
}