interface FPropertyDescriptor {
    addIndent?: number;
    affectBy: string;
    allowInternalAssets: boolean;
    allowMultipleObjects: boolean;
    arrayActions: ("append" | "insert" | "delete" | "move")[];
    assetTypeFilter: string;
    caption: string;
    catalog: string;
    catalogCaption: string;
    catalogOrder: number;
    collapsed?: boolean;
    colorNullable: boolean;
    createObjectMenu: string[];
    customAssetFilter: string;
    default?: any;
    defaultColor: any;
    disableReset?: boolean;
    elementProps: Partial<FPropertyDescriptor>;
    enumSource: FEnumDescriptor;
    fixedLength: boolean;
    forceWriteDefault?: boolean;
    forceWriteInPrefabRoot?: boolean;
    fractionDigits: number;
    hidden: string | boolean;
    hideHeader: boolean;
    hideIfEnumSourceEmpty: boolean;
    hideInDeriveType: boolean;
    inspector: string;
    isAsset: boolean;
    max: number;
    maxArrayLength?: number;
    min: number;
    minArrayLength?: number;
    multiline: boolean;
    name: string;
    nullable: boolean;
    onChange: string;
    options: Record<string, any>;
    password: boolean;
    percentage: boolean;
    position: string;
    private: boolean;
    prompt: string;
    range: [number, number];
    readonly: string | boolean;
    required: string | boolean;
    reverseBool: boolean;
    serializable: boolean;
    showAlpha: boolean;
    step: number;
    structLike: boolean;
    submitOnTyping: boolean;
    tips: string;
    toTemplate: string;
    type: FPropertyType;
    useAssetPath: boolean;
    validator: string;
}

属性

addIndent?: number

Increase indentation, unit is level, not pixels.

增加缩进,单位是层级,不是像素。

affectBy: string

When the property does not participate in serialization, if its data may be affected by other serializable properties, fill in the names of other properties here. This is usually used to determine whether prefab properties are overridden.

属性在不参与序列化时,如果它的数据可能受其他可序列化的属性影响,在这里填写其他属性名称。这通常用于判断预制体属性是否覆盖。

allowInternalAssets: boolean

Applicable to resource type properties. Whether to allow selection of internal resources when choosing a resource

对资源类型的属性适用。选择资源时是否允许选择内部资源

allowMultipleObjects: boolean

Indicates whether the property is allowed to be edited in multiple selection situations. Default is true.

表示属性是否允许多选情况下编辑。默认true。

arrayActions: ("append" | "insert" | "delete" | "move")[]

Applicable to array type properties. If not provided, it means the array allows all operations, if provided, only the listed operations are allowed.

对数组类型属性适用。如果不提供,则表示数组允许所有操作,如果提供,则只允许列出的操作。

assetTypeFilter: string

Applicable to resource type properties. Multiple resource types are separated by commas, for example "Image,Audio".

对资源类型的属性适用。多个资源类型用逗号分隔,例如"Image,Audio"。

caption: string

Title. If not provided, the name will be used.

标题。如果不提供,则使用name。

catalog: string

Property category. Setting the same value for multiple properties can display them in the same Inspector category.

属性栏目。为多个属性设置相同的值,可以将它们显示在同一个属性栏目内。

catalogCaption: string

Category title. If not provided, the category name will be used directly.

栏目标题。不提供则直接使用栏目名称。

catalogOrder: number

The display order of the category, lower values are displayed in front. If not provided, it follows the order in which properties appear.

栏目的显示顺序,数值越小显示在前面。不提供则按属性出现的顺序。

collapsed?: boolean

Default collapsed state of sub-properties

子属性默认折叠状态

colorNullable: boolean

Applicable to color type properties. Allows displaying a checkbox to determine whether the color is null.

对颜色类型属性适用。允许显示一个checkbox决定颜色是否为null。

createObjectMenu: string[]

Applicable to object type properties. When creating an object, you can select a type from a dropdown menu. If explicitly set to null, the menu is disabled. By default, a menu for creating the base class is displayed.

对对象类型属性适用。对象创建时可以下拉选择一个类型。如果显示设置为null,则禁止菜单。默认是显示一个创建基类的菜单。

customAssetFilter: string

Applicable to resource type properties. You can set a custom filter. The filter needs to be registered first through EditorEnv.assetMgr.customAssetFilters.

对资源类型的属性适用。可以设置一个自定义的过滤器。过滤器需要先通过EditorEnv.assetMgr.customAssetFilters注册。

default?: any

The initial value of the property in the prototype. This value is also used for comparison during serialization, so if they are the same, this property will not be serialized. It must be ensured that the value set here is the initial value of the variable in the class.

该属性在原型中的初始值。这个值也用于序列化时比较,如果相同则不序列化这个属性,所以必须保证这里设置的值就是类中变量的初始值。

defaultColor: any

Applicable to color type properties. It differs from the default value in that when default is null, defaultColor can define a non-null default value.

对颜色类型属性适用。它与default值不同的是,当default是null时,可以用defaultColor定义一个非null时的默认值。

disableReset?: boolean

Indicates that the property is not allowed to reset to default by the "Reset Default" menu. Default is false.

表示属性不允许通过“重置为默认”菜单重置为默认值。默认为false。

elementProps: Partial<FPropertyDescriptor>

Applicable to array type properties. Here you can define the properties of array elements

对数组类型属性适用。这里可以定义数组元素的属性

enumSource: FEnumDescriptor

Define enumeration

定义枚举

fixedLength: boolean

Applicable to array type properties. Indicates that the array is of fixed length and not allowed to be modified.

对数组类型属性适用。表示数组是固定长度,不允许修改。

forceWriteDefault?: boolean

If true, the property is always written during serialization. Otherwise, it is compared with the default value, and if they are the same, it is not written. Default is false.

如果为true,则属性在序列化时总是写入。否则,会和默认值比较,如果相同则不写入。默认为false。

forceWriteInPrefabRoot?: boolean

If true, the root node of the prefab instance will always write this property during serialization, regardless of whether it is overridden. This also means that this property will not appear in the override list. Default is false.

如果为true,则prefab实例的根节点在序列化时总是写入这个属性,不管是否被重写。这也意味着这个属性不会出现在重写列表中。默认为false。

fractionDigits: number

Number of decimal places

小数点后的位数

hidden: string | boolean

Hide control: true to hide, false to show. Often used in cases of associated properties.

    1. Can use expressions by putting condition expressions in strings to get boolean type calculation results, for example "!data.a && !data.b" means when properties a and b are both empty, the condition is true, and this property is hidden.
    1. Here, data is the object data of the current component, data.a and data.b property fields a and b refer to the a and b property values in the current component, by this method to get the property values in the component object data, used for conditional judgment, acting on whether the current property is hidden.

隐藏控制:true隐藏,false显示。常用于关联属性的情况。

    1. 可以用表达式,通过将条件表达式放到字符串里,获得布尔类型的运算结果,例如"!data.a && !data.b",表示属性a和属性b均为空时,条件成立(true),隐藏这个属性。
    1. 这里的data为当前组件的对象数据,data.a与data.b属性字段的a与b就是指当前组件中的a与b属性值,通过这种方法取到组件对象数据中的属性值,用于条件判断,作用于当前属性是否隐藏。
hideHeader: boolean

Applicable to object type properties. If true, hide the object's title, and the display indentation of the properties under the object will be reduced by one level.

对对象类型属性适用。如果为true,隐藏对象的标题,同时对象下的属性的显示缩进会减少一级。

hideIfEnumSourceEmpty: boolean

Hide this property when the data source is empty

当数据源为空时,隐藏这个属性

hideInDeriveType: boolean

Indicates that the property is not displayed in the property table of derived classes

表示属性不显示在派生类的属性表中

inspector: string

The control for editing this property. Built-in ones include: number, string, boolean, color, vec2, vec3, vec4, asset

  • number : Number input.
  • string : String input. Default is single-line input, for multi-line, need to activate the multiline option.
  • boolean : Boolean input, used for checkboxes or radio buttons.
  • color : A color box + palette + color picker
  • vec2 : Combination of X and Y inputs
  • vec3 : Combination of X, Y, and Z inputs
  • vec4 : Combination of X, Y, Z, and W inputs
  • asset : Select resource
  • Generally, you don't need to set this option, the editor will automatically select the appropriate control based on the property type, but in some cases you may need to specify it forcefully.
  • For example, if the data type is Vector4, but it actually expresses a color, the default control for editing Vector4 is not suitable, and you need to set it to "color" here.
  • Explicitly setting inspector to null will not construct an inspector for the property. This is different from setting hidden to true. When hidden is true, it is created but not visible, while when inspector is null, it is not created at all.

编辑这个属性的控件。内置有:number,string,boolean,color,vec2,vec3,vec4,asset

  • number : 数字输入。
  • string : 字符串输入。默认为单行输入,如果是多行,需要激活multiline选项。
  • boolean : 布尔值输入,用于单选框或多选框。
  • color : 一个颜色框+调色盘+拾色器
  • vec2 : XY输入的组合
  • vec3 : XYZ输入的组合
  • vec4 : XYZW输入的组合
  • asset : 选择资源
  • 一般来说,不需要设置这个选项,编辑器会自动根据属性类型选择适合的控件,但在某些情况下可以需要强制指定。
  • 例如,如果数据类型是Vector4,但其实它表达的是颜色,用默认编辑Vector4的控件不适合,需要在这里设置为"color"。
  • 显式设置inspector为null,则不会为属性构造inspector。这与hidden设置为true不同。hidden为true是创建但不可见, inspector为null的话则是完全不创建。
isAsset: boolean

Indicates that this property is a reference to a resource

说明此属性是引用一个资源

max: number

Maximum value for numbers

数字的最大值

maxArrayLength?: number

Applicable to array type properties. Maximum length of the array. Default is null.

对数组类型属性适用。数组的最大长度。默认为null。

min: number

Minimum value for numbers

数字的最小值

minArrayLength?: number

Applicable to array type properties. Minimum length of the array. Default is null.

对数组类型属性适用。数组的最小长度。默认为null。

multiline: boolean

Whether it's multi-line text input

是否多行文本输入

name: string

Property name. Generally does not need to be set.

属性名称。一般不需要设定。

nullable: boolean

Whether to allow null values. Default is true.

是否允许null值。默认为true。

onChange: string

When the property changes, additionally call a function of the object, this is the function name. The function prototype is func(key?:string). Where key is passed when changing internal properties of members. For example, when changing the internal properties of an element of the data, key is the index of this element.

属性改变时额外调用对象的一个函数,这里是函数名称。 函数原型是func(key?:string)。其中key在改变成员内部属性时会传递。 例如改变数据某个元素的内部属性,则key是这个元素的索引。

options: Record<string, any>

Additional options

额外的选项

password: boolean

Whether it's password input

是否密码输入

percentage: boolean

Display as percentage

显示为百分比

position: string

Display position. Syntax: before xxx/after xxx/first/last.

显示位置。语法:before xxx/after xxx/first/last。

private: boolean

Indicates that the property is a private property. Private properties will not be displayed in the Inspector, but will be serialized and saved.

表示属性是私有属性。私有属性不会显示在Inspector里,但会序列化保存。

prompt: string

If it's a text type, it's the prompt information for input text; if it's a boolean type, it's the title of the checkbox.

如果是文本类型,是输入文本的提示信息;如果是布尔类型,是多选框的标题。

range: [number, number]

Value range, equivalent to setting min and max at once.

数值范围,等同于一次性设置min和max。

readonly: string | boolean

Read-only control.

    1. Can use expressions by putting condition expressions in strings to get boolean type calculation results, for example "!data.a && !data.b" means when properties a and b are both empty, the condition is true, and this property is read-only.
    1. Here, data is the object data of the current component, data.a and data.b property fields a and b refer to the a and b property values in the current component, by this method to get the property values in the component object data, used for conditional judgment, acting on whether the current property is hidden.

只读控制。

    1. 可以用表达式,通过将条件表达式放到字符串里,获得布尔类型的运算结果,例如"!data.a && !data.b",表示属性a和属性b均为空时,条件成立(true),该属性只读。
    1. 这里的data为当前组件的对象数据,data.a与data.b属性字段的a与b就是指当前组件中的a与b属性值,通过这种方法取到组件对象数据中的属性值,用于条件判断,作用于当前属性是否隐藏。
required: string | boolean

Whether to allow the data to be empty. Can use expressions to return true or false results.

是否允许数据为空值。 可以用表达式,返回true或者false的结果。

reverseBool: boolean

Whether to invert the boolean value. For example, when the property value is true, the checkbox is displayed as unchecked.

是否反转布尔值。例如当属性值为true时,多选框显示为不勾选。

serializable: boolean

Whether to serialize

是否序列化

showAlpha: boolean

Applicable to color type properties. Indicates whether to provide modification of the transparency a value.

对颜色类型属性适用。表示是否提供透明度a值的修改。

step: number

The magnitude of value change each time when changing the value by dragging.

拖动方式改变数值时,每次数值改变的幅度。

structLike: boolean

Applicable to object type properties. Indicates that this property type has struct-like behavior characteristics, that is, it is always used as a whole. For example, if the value of property b of object obj is a1, a1 is an instance of type T, and the structLike of type T is true, then when the properties of a1 change, the editor will simultaneously call obj.b = a1. Default is false.

对对象类型属性适用。表示这个属性类型有类似结构体的行为特性,即总是作为一个整体使用。 例如,obj对象的某个属性b的值是a1,a1是T类型的实例,且T类型的structLike为true,那么当a1的属性改变时,编辑器将同时调用obj.b = a1。 默认为false。

submitOnTyping: boolean

If true or default, text input is submitted every time; otherwise, it's only submitted when losing focus

如果true或者缺省,文本输入每次输入都提交;否则只有在失焦时才提交

tips: string

Tooltip text

提示文字

toTemplate: string

Applicable to properties of type Node or Component. If not null, when deserialization is performed in the actual runtime environment, the referenced object is no longer instantiated, but its serialized data is saved as-is to the specified property.

对类型是Node或者Component的属性适用。如果不为null,当在实际运行环境里执行反序列化时,引用对象不再实例化,而是将它的序列化数据原样保存到指定的属性中。

Property type. Basic types are: "number", "string", "boolean", "any", note that these are used as strings, not types. Composite types are: arrays, expressed as ["number"]; dictionaries, expressed as ["Record", "number"], where the first element is fixed as "Record" and the second element is the actual type. Other object types can directly use the class name, but note that the class must use the regClass decorator. Enum types are also supported. Enum types do not need regClass. If type is not provided, it indicates that it is only used for UI style, has no actual corresponding data, and will not be serialized.

属性类型。 基础类型有:number,string,boolean,any,注意是使用字符串,不是类型。 复合类型有:数组,使用类似["number"]这样的方式表达;字典,使用类似["Record", "number"]这样的方式表达,第一个元素固定为Record,第二个元素为实际类型。 其他对象类型可以直接使用类名,但要注意该类必须有使用regClass装饰器。也支持枚举类型。枚举类型不需要regClass。 如果不提供type,表示只用于ui样式,没有实际对应数据,和不会序列化

useAssetPath: boolean

If the property type is string, and when selecting a resource, this option determines whether the property value is the original path of the resource or in the format of res://uuid. If true, it's the original path of the resource. Default is false.

如果属性类型是string,并且进行资源选择时,这个选项决定属性值是资源原始路径还是res://uuid这样的格式。如果是true,则是资源原始路径。默认false。

validator: string

Data checking mechanism.

    1. Pass in a string including expressions to judge whether it meets the conditions of the expression. If it meets the conditions, it needs to return an error message.
    1. Usage example: "if(value == data.a) return 'Cannot be the same as the value of a'" Where value is the value entered by the user for this property, data is the object data of the current component, data.a is the a property value in the current component

数据检查机制。

    1. 将包括表达式的字符串传入,用于判断检查是否符合表达式的条件。符合条件,需要返回报错信息。
    1. 使用示例为:"if(value == data.a) return '不能与a的值相同'" 其中的value为当前用户在该属性输入的值,data为当前组件的对象数据,data.a是当前组件中的a属性值