arx-level-generator
Version:
A tool for creating Arx Fatalis maps
15 lines (14 loc) • 336 B
TypeScript
import { ScriptProperty } from '../ScriptProperty.js';
/**
* A ScriptProperty for specifying the size of an Entity.
*
* Value precision is only 2 decimals
*
* @extends ScriptProperty
*
* default value is 1
*/
export declare class Scale extends ScriptProperty<number> {
toString(): string;
static get default(): Scale;
}