Saxonberg Server API
    Preparing search index...
    interface Drivable {
        getControllerSlot(): string;
        getDriver(): Stuff & Slottable | null;
        getVehicularMode(): LocomotionMode | null;
        isDriven(): boolean;
        setControllerSlot(value: string): void;
        setVehicularMode(value: LocomotionMode | null): void;
    }
    Index

    Methods

    • Vehicular LocomotionMode this conveyance engages when driven (e.g., wheeled for a cart, sailed for a rowboat). Authoring is required: LocomotionApi.resolveHostMode throws on a Drivable with null vehicularMode — surfacing the content-author bug rather than silently walk-traversing a wheeled vehicle. Stored as templatePath (ref-shapes Pattern A).

      Returns LocomotionMode | null