Version: 2017.2

EditorGUI.PropertyField

切换到手册
public static bool PropertyField (Rect position, SerializedProperty property, bool includeChildren= false);
public static bool PropertyField (Rect position, SerializedProperty property, GUIContent label, bool includeChildren= false);

参数

position 屏幕上用于属性字段的矩形。
property 要为其创建字段的 SerializedProperty。
label 要使用的可选标签。如果未指定,则使用属性本身的标签。使用 GUIContent.none 可完全不显示标签。
includeChildren 如果为 /true/,将绘制包含子项的属性;否则仅绘制控件本身(例如,只有一个折叠箭头,其下不含任何内容)。

返回

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

描述

SerializedProperty 生成一个字段。

另请参阅:SerializedPropertySerializedObject