Experimental: this API is experimental and might be changed or removed in the future.

TerrainPaintUtility.BeginPaintTexture

매뉴얼로 전환
public static Experimental.TerrainAPI.TerrainPaintUtility.PaintContext BeginPaintTexture (Terrain terrain, Rect bounds, TerrainLayer inputLayer);

파라미터

terrainReference Terrain tile. Defines terrain space and alphamap resolution.
inputLayerSelects the alphamap to paint.
boundsInTerrainSpaceThe region in terrain space to edit.
extraBorderPixelsNumber of extra border pixels required.

반환

PaintContext PaintContext containing the combined alphamap data for the specified region.

설명

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

BeginPaintTexture identifies that alphamap pixels that are within extraBorderPixels of the bounds rectangle. The search is performed across adjacent connected Terrains. The pixels are collected into a temporary render texture and stored in PaintContext.sourceRenderTexture.

After calling this function, you may modify the alphamap by writing the new values into PaintContext.destinationRenderTexture. Then, you may complete the modification by calling TerrainPaintUtility.EndPaintHeightmap to copy the modified data back to the Terrains. Alteratively, you may cancel the modification by calling TerrainPaintUtility.ReleaseContextResources to release the RenderTexture resources.

See Also: TerrainPaintUtility.EndPaintTexture and PaintContext.