UNPKG

arx-level-generator

Version:
15 lines (14 loc) 336 B
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; }