LongField
Makes a text field for entering long integers.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Method
- Namespace: UnityEditor
- Assembly: UnityEditor.CoreModule
LongField(Rect, long, GUIStyle)
Makes a text field for entering long integers.
public static long LongField(Rect position, long value, GUIStyle style)
Parameters
Returns
Type | Description |
|---|---|
| long | The value entered by the user. |
Remarks
LongField(Rect, string, long, GUIStyle)
Makes a text field for entering long integers.
public static long LongField(Rect position, string label, long value, GUIStyle style)
Parameters
Returns
Type | Description |
|---|---|
| long | The value entered by the user. |
Remarks
LongField(Rect, GUIContent, long, GUIStyle)
Makes a text field for entering long integers.
public static long LongField(Rect position, GUIContent label, long value, GUIStyle style)
Parameters
Rectangle on the screen to use for the long field.
Optional label to display in front of the long field.
The value to edit.
Returns
Type | Description |
|---|---|
| long | The value entered by the user. |