@minecraft/server-editor
    Preparing search index...

    Interface IModalToolBeta

    interface IModalTool {
        id: string;
        onModalToolActivation: EventSink<ModalToolLifecycleEventPayload>;
        bindPropertyPane(pane: IRootPropertyPane): void;
        registerKeyBinding(
            action: SupportedKeyboardActionTypes,
            binding: KeyBinding,
            info?: KeyBindingInfo,
        ): IRegisteredKeyBinding;
        registerMouseButtonBinding(action: SupportedMouseActionTypes): void;
        registerMouseDragBinding(action: SupportedMouseActionTypes): void;
        registerMouseWheelBinding(action: SupportedMouseActionTypes): void;
        unregisterInputBindings(): void;
    }
    Index

    Properties

    id: string

    Unique identifier for the tool

    Provides lifecycle activation events for a modal tool

    Methods

    • Beta

      Returns void