Version: 5.6
public static bool PropertyField (SerializedProperty property, params GUILayoutOption[] options);
public static bool PropertyField (SerializedProperty property, GUIContent label, params GUILayoutOption[] options);
public static bool PropertyField (SerializedProperty property, bool includeChildren, params GUILayoutOption[] options);
public static bool PropertyField (SerializedProperty property, GUIContent label, bool includeChildren, params GUILayoutOption[] options);

参数

property 要为其创建字段的 SerializedProperty。
label 要使用的可选标签。如果未指定,则使用属性本身的标签。使用 GUIContent.none 可完全不显示标签。
includeChildren 如果为 /true/,将绘制包含子项的属性;否则仅绘制控件本身(例如,只有一个折叠箭头,其下不含任何内容)。
options 一个可选的布局选项列表,用于指定额外的布局属性。此处传递的任何值都将覆盖 style 定义的设置。
另请参阅:GUILayout.WidthGUILayout.HeightGUILayout.MinWidthGUILayout.MaxWidthGUILayout.MinHeightGUILayout.MaxHeightGUILayout.ExpandWidthGUILayout.ExpandHeight

返回

bool 如果属性拥有子项且已展开,并且 includeChildren 设置为 false,则为 True;否则为 false。

描述

SerializedProperty 生成一个字段。

另请参阅:SerializedPropertySerializedObject