接口 IBoolPropertyItem实验性

A property item which supports Vector3 properties

interface IBoolPropertyItem {
    enable: boolean;
    id: string;
    paneId: string;
    typeName: PropertyItemType;
    value: boolean;
    visible: boolean;
    setTitle(title: LocalizedString): void;
    setTooltip(title: LocalizedString): void;
}

层级 (查看完整内容)

属性

enable: boolean

If the item is enabled in the UI.

id: string

Unique ID for the property item.

paneId: string

The parent pane id.

The type name of the target property.

value: boolean

Current value of the property item.

visible: boolean

If the item should be visible in the UI.

方法