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

    接口 IBlockListPropertyItemOptions

    Optional properties for Bool property item

    interface IBlockListPropertyItemOptions {
        enable?: boolean;
        onChange?: (
            newValue: readonly string[],
            oldValue: readonly string[],
        ) => void;
        visible?: boolean;
    }

    层级 (查看层级一览)

    索引

    属性

    enable?: boolean

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

    onChange?: (newValue: readonly string[], oldValue: readonly string[]) => void

    This callback is called when UI control value is changed.

    visible?: boolean

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