GetTerrain(int)
Retrieves a Terrain from the PaintContext.
Read time 1 minuteLast updated 8 days ago
Definition
- Type: Method
- Namespace: UnityEngine.TerrainTools
- Assembly: UnityEngine.TerrainModule
public Terrain GetTerrain(int terrainIndex)
Parameters
Index of the terrain.
Returns
Type | Description |
|---|---|
| Terrain | Returns the Terrain object. |
Remarks
When painting across a border, the PaintContext can refer to several Terrain tiles. GetTerrain is used to access those Terrain tiles. terrainIndex must be between 0 and PaintContext.terrainCount - 1. Additional Resources: PaintContext.GetClippedPixelRectInTerrainPixels and PaintContext.GetClippedPixelRectInRenderTexturePixels.