Scatter(Func<ITerrainInfo, RenderTexture>, Material, int, Action<ITerrainInfo>, Action<ITerrainInfo>)
Applies an edited PaintContext by copying modifications back to user-specified RenderTextures for the source Terrain tiles.
Read time 1 minuteLast updated 12 days ago
Definition
- Type: Method
- Namespace: UnityEngine.TerrainTools
- Assembly: UnityEngine.TerrainModule
public void Scatter(Func<PaintContext.ITerrainInfo, RenderTexture> terrainDest, Material blitMaterial = null, int blitPass = 0, Action<PaintContext.ITerrainInfo> beforeBlit = null, Action<PaintContext.ITerrainInfo> afterBlit = null)
Parameters
Function returning the RenderTexture to be written for each Terrain.
The material used to copy the data. If null, the default blit material is used.
The material pass used to copy the data. Its default value is 0.
An optional action to call before copying to each Terrain.
An optional action to call after copying to each Terrain.
Remarks
After the edits to a PaintContext are complete, this function applies the modified data in to the data stored for each Terrain. Scatter performs this copy to a set of RenderTextures, which is specified by .
destinationRenderTextureterrainDestThis function uses the following steps to scatter to each Terrain in the PaintContext:
-
Callsto retrieve the target RenderTexture.
terrainDest -
Calls.
beforeBlit -
Usesand
blitMaterialto copy theblitPassinto the target RenderTexture.destinationRenderTexture -
Calls.
afterBlit
Additional Resources: PaintContext, PaintContext.Gather.