EditorGUI.DelayedDoubleField

切换到手册
public static double DelayedDoubleField (Rect position, double value, GUIStyle style= EditorStyles.numberField);
public static double DelayedDoubleField (Rect position, string label, double value, GUIStyle style= EditorStyles.numberField);
public static double DelayedDoubleField (Rect position, GUIContent label, double value, GUIStyle style= EditorStyles.numberField);

参数

position屏幕上用于双精度浮点数字段的矩形。
label(可选)显示在双精度浮点数字段前的标签。
value要编辑的值。
style可选 GUIStyle

返回

double 用户输入的值。请注意,在用户按 Enter 键或将焦点从 double 字段移开之前,返回值不会更改。

描述

创建一个用于输入双精度浮点数的延迟文本字段。

EditorGUI.DoubleField 类似,但在用户按 Enter 键或将焦点从双精度浮点数字段移开之前,不会返回新值。


参数

position屏幕上用于双精度浮点数字段的矩形。
property要编辑的双精度浮点数属性。
label(可选)显示在双精度浮点数字段前的标签。传递 GUIContent.none 以隐藏标签。

描述

创建一个用于输入双精度浮点数的延迟文本字段。

EditorGUI.DoubleField 类似,但在用户按 Enter 键或将焦点从双精度浮点数字段移开之前,不会返回新值。