Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

EditorGUI.IntField

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static function IntField(position: Rect, value: int, style: GUIStyle = EditorStyles.numberField): int;
public static int IntField(Rect position, int value, GUIStyle style = EditorStyles.numberField);
public static function IntField(position: Rect, label: string, value: int, style: GUIStyle = EditorStyles.numberField): int;
public static int IntField(Rect position, string label, int value, GUIStyle style = EditorStyles.numberField);
public static function IntField(position: Rect, label: GUIContent, value: int, style: GUIStyle = EditorStyles.numberField): int;
public static int IntField(Rect position, GUIContent label, int value, GUIStyle style = EditorStyles.numberField);

Parameters

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

Returns

int The value entered by the user.

Description

Make a text field for entering integers.


Int Field in an Editor Window.

// Editor Script that clones the selected GameObject a number of times.

class EditorGUIIntField extends EditorWindow {

var clones : int = 1;

@MenuItem("Examples/Clone Object") static function Init() { var window = GetWindow(EditorGUIIntField); window.Show(); }

function OnGUI() { sizeMultiplier = EditorGUI.IntField(Rect(0,35,position.width,15), "Number of clones:", clones); if(GUI.Button(Rect(0,10,position.width, 20), "Clone!")) for(var i = 0; i < clones; i++) Instantiate(Selection.activeGameObject, Vector3.zero, Quaternion.identity); } }