@minecraft
    正在准备搜索索引...

    接口 IListPaneBoolEntry

    List Pane button entry

    interface IListPaneBoolEntry {
        enabled: boolean;
        index: number;
        slot: IListPaneSlot;
        type: ListPaneEntryType;
        value: boolean;
        visible: boolean;
        setEnabled(enabled: true): void;
        setTooltip(tooltip: BasicTooltipContent): void;
        setValue(value: boolean): void;
        setVisible(visible: boolean): void;
    }

    层级 (查看层级一览)

    索引

    属性

    enabled: boolean

    Enabled state of the entry.

    index: number

    Sequence index of the entry.

    Slot that owns the entry.

    Type of the entry.

    value: boolean

    Value of the entry.

    visible: boolean

    Visibility state of the entry.

    方法