EditorGUI.DelayedDoubleField
建议更改
成功!
感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交的内容,但我们会阅读用户提出的每个更改建议,并在适用的情况下进行更新。
关闭
提交失败
由于某些原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。
关闭
声明
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 用户输入的值。请注意,返回值在用户按下回车键或焦点从双精度字段移开之前不会改变。
参数
position |
屏幕上用于双精度字段的矩形。 |
属性 |
要编辑的双精度属性。 |
label |
双精度字段前面显示的可选标签。传递 GUIContent.none 以隐藏标签。 |