# Vector3IntField

> Makes an X, Y, and Z integer field for entering a Vector3Int.

## Definition

* **Type:** Method
* **Namespace:** [UnityEditor](/engine/6000.6/script-reference/unityeditor.md)
* **Assembly:** UnityEditor.CoreModule

## Vector3IntField(Rect, string, Vector3Int)

Makes an X, Y, and Z integer field for entering a [Vector3Int](/engine/6000.6/script-reference/unityengine/vector3int.md).

```csharp
public static Vector3Int Vector3IntField(Rect position, string label, Vector3Int value)
```

### Parameters

**** (\[Rect]\(/engine/6000.6/script-reference/unityengine/rect)): Rectangle on the screen to use for the field.**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): Label to display above the field.**** (\[Vector3Int]\(/engine/6000.6/script-reference/unityengine/vector3int)): The value to edit.

### Returns

| Type                                                                    | Description                    |
| ----------------------------------------------------------------------- | ------------------------------ |
| [Vector3Int](/engine/6000.6/script-reference/unityengine/vector3int.md) | The value entered by the user. |

## Vector3IntField(Rect, GUIContent, Vector3Int)

Makes an X, Y, and Z integer field for entering a [Vector3Int](/engine/6000.6/script-reference/unityengine/vector3int.md).

```csharp
public static Vector3Int Vector3IntField(Rect position, GUIContent label, Vector3Int value)
```

### Parameters

**** (\[Rect]\(/engine/6000.6/script-reference/unityengine/rect)): Rectangle on the screen to use for the field.**** (\[GUIContent]\(/engine/6000.6/script-reference/unityengine/guicontent)): Label to display above the field.**** (\[Vector3Int]\(/engine/6000.6/script-reference/unityengine/vector3int)): The value to edit.

### Returns

| Type                                                                    | Description                    |
| ----------------------------------------------------------------------- | ------------------------------ |
| [Vector3Int](/engine/6000.6/script-reference/unityengine/vector3int.md) | The value entered by the user. |
