UNPKG

arx-level-generator

Version:
15 lines (14 loc) 350 B
import { ScriptProperty } from '../ScriptProperty.js'; /** * A ScriptProperty for specifying how fast an Entity can move. * * Affects all animations, not just movement. * * @extends ScriptProperty * * default value is 1 */ export declare class Speed extends ScriptProperty<number> { toString(): string; static get default(): Speed; }