Legacy Documentation: Version 5.1
LanguageEnglish
  • 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

position Rectangle on the screen to use for the double field.
label Optional label to display in front of the double field.
value The value to edit.
style Optional GUIStyle.

Returns

double The value entered by the user.

Description

Make a text field for entering doubles.