arx-level-generator
Version:
A tool for creating Arx Fatalis maps
15 lines (14 loc) • 350 B
TypeScript
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;
}