Version: 2020.2
LanguageEnglish
  • C#
Experimental: this API is experimental and might be changed or removed in the future.

TerrainPaintUtility.BeginPaintHoles

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 Experimental.TerrainAPI.PaintContext BeginPaintHoles(Terrain terrain, Rect boundsInTerrainSpace, int extraBorderPixels);

Parameters

terrain Reference Terrain tile.
boundsInTerrainSpace The region in Terrain space to edit.
extraBorderPixels Number of extra border pixels required.

Returns

PaintContext PaintContext that contains the combined Terrain holes data for the specified region.

Description

Helper function to set up a PaintContext for modifying the Terrain holes of one or more Terrain tiles.

BeginPaintHoles identifies all of the Terrain holes pixels that are within extraBorderPixels of the bounds rectangle. The search is performed across adjacent connected Terrain tiles. The pixels are collected into a temporary render texture and stored in PaintContext.sourceRenderTexture.

After you call this function, you can write new values into PaintContext.destinationRenderTexture to modify the Terrain holes. Then, you may complete the modification by calling TerrainPaintUtility.EndPaintHoles to copy the modified data back to the Terrain tiles. Alteratively, you may cancel the modification by calling TerrainPaintUtility.ReleaseContextResources to release the RenderTexture resources.

See Also: TerrainPaintUtility.EndPaintHoles and PaintContext.