Legacy Documentation: Version 5.0
Language: English
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

EditorGUI.DoubleField

Switch to Manual
public static function DoubleField(position: Rect, value: double, style: GUIStyle = EditorStyles.numberField): double;
public static function DoubleField(position: Rect, label: string, value: double, style: GUIStyle = EditorStyles.numberField): double;
public static function DoubleField(position: Rect, label: GUIContent, value: double, style: GUIStyle = EditorStyles.numberField): double;

Parameters

positionRectangle on the screen to use for the double field.
labelOptional label to display in front of the double field.
valueThe value to edit.
styleOptional GUIStyle.

Returns

double The value entered by the user.

Description

Make a text field for entering doubles.