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

    Interface IProgressIndicatorPropertyItemOptionsBeta

    Optional properties for progress indicator property item

    interface IProgressIndicatorPropertyItemOptions {
        enable?: boolean;
        hiddenLabel?: boolean;
        progress?: IObservableProp<number>;
        title?: LocalizedString;
        tooltip?: LocalizedString;
        variant?: ProgressIndicatorPropertyItemVariant;
        visible?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    enable?: boolean

    Initial enabled state of property item. If undefined, it will default to true.

    hiddenLabel?: boolean

    If true label text will be hidden. If undefined, the label will be visible by default.

    progress?: IObservableProp<number>

    Normalized loading progress (0 to 1).

    Localized title of the property item.

    tooltip?: LocalizedString

    Tooltip description of the property item.

    Determines how we display progress indicator. If undefined, it will default to Spinner.

    visible?: boolean

    Initial visibility state of property item. If undefined, it will default to true.