# Position

> The location of the vertex in space.

## Definition

* **Type:** Field
* **Namespace:** [UnityEngine.Rendering](/engine/6000.6/script-reference/unityengine/rendering.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
Position = 0
```

### Remarks

Meshes require this attribute for rendering.

Positions are commonly represented using the [Vector3](/engine/6000.6/script-reference/unityengine/vector3.md) format, which consists of three 32-bit floating-point values, resulting in 12 bytes per vertex. If [vertex compression](/engine/6000.6/manual/analysis/graphics-performance-profiling/compressing-mesh-data-optimization/configure-vertex-compression.md) is applied to this attribute, each component is compressed to 16-bit floating point values, reducing the total to 6 bytes per vertex.

This attribute corresponds to the `POSITION` semantic in the HLSL shading language.

You can access vertex positions using methods such as [Mesh.GetVertices](/engine/6000.6/script-reference/unityengine/mesh/getvertices.md) and [Mesh.SetVertices](/engine/6000.6/script-reference/unityengine/mesh/setvertices.md).

For more information, refer to [mesh vertex data](/engine/6000.6/manual/assets-and-media/asset-types/mesh/get-started-with-meshes/anatomyofa/vertex-data.md).
