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

    接口 ICollectionTreeEntryNumberItem

    interface ICollectionTreeEntryNumberItem {
        enabled: boolean;
        parentEntry: ICollectionTreeEntry;
        type: CollectionTreeEntryItemType;
        value: number;
        visible: boolean;
        setEnabled(enabled: boolean): void;
        setTitle(title: LocalizedString): void;
        setTooltip(title: BasicTooltipContent): void;
        setVisible(visible: boolean): void;
    }

    层级 (查看层级一览)

    索引

    属性

    enabled: boolean

    Enabled state of the entry.

    Tree entry that owns the item.

    Type of the item.

    value: number

    Value of the entry item.

    visible: boolean

    Visibility state of the entry.

    方法