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

    Interface INumberPropertyItemBeta

    A property item which supports Number properties

    interface INumberPropertyItem {
        enable: boolean;
        id: string;
        paneId: string;
        typeName: PropertyItemType;
        value: number;
        visible: boolean;
        setTitle(title: undefined | LocalizedString): void;
        setTooltip(tooltip: undefined | LocalizedString): void;
        updateLimits(limits: { max?: number; min?: number }): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    enable: boolean

    If the item is enabled in the UI.

    id: string

    Unique ID for the property item.

    paneId: string

    The parent pane id.

    The type name of the target property.

    value: number

    Current value of the property item.

    visible: boolean

    If the item should be visible in the UI.

    Methods

    • Beta

      Parameters

      Returns void

      Updates title of the property item.

    • Beta

      Parameters

      Returns void

      Updates tooltip description of property item.

    • Beta

      Parameters

      • limits: { max?: number; min?: number }

      Returns void

      Updates number limits and clamps the current value.