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

    接口 ICollectionTreeEntryItem

    interface ICollectionTreeEntryItem {
        enabled: boolean;
        parentEntry: ICollectionTreeEntry;
        type: CollectionTreeEntryItemType;
        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.

    visible: boolean

    Visibility state of the entry.

    方法