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

    接口 IListPaneImageEntry

    List Pane image entry

    interface IListPaneImageEntry {
        index: number;
        slot: IListPaneSlot;
        type: ListPaneEntryType;
        value: Readonly<ImageResourceData>;
        visible: boolean;
        setValue(value: ImageResourceData): void;
        setVisible(visible: boolean): void;
    }

    层级 (查看层级一览)

    索引

    属性

    index: number

    Sequence index of the entry.

    Slot that owns the entry.

    Type of the entry.

    value: Readonly<ImageResourceData>

    Value of the entry.

    visible: boolean

    Visibility state of the entry.

    方法