Version: 2019.2
LanguageEnglish
  • C#

TerrainData.SetHeightsDelayLOD

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 void SetHeightsDelayLOD(int xBase, int yBase, float[,] heights);

Parameters

xBaseFirst x index of heightmap samples to set.
yBaseFirst y index of heightmap samples to set.
heightsArray of heightmap samples to set (values range from 0 to 1, array indexed as [y,x]).

Description

Set an array of heightmap samples.

Sets heightmap data using a two dimensional array of heightmap samples. The samples are represented as float values ranging from 0 to 1. The area affected is defined by the array dimensions and starts at xBase and yBase. The heights array is indexed as [y,x].

Unlike TerrainData.SetHeights, this method does not update the LOD information for the terrain, or any trees/vegetation objects; this means the terrain may be temporarily rendered at an inappropriately high level of detail, but makes the method fast enough to be used in interactive editing scenarios. Once modifications to the terrain have been completed - for example, when the user releases the mouse button - call Terrain.ApplyDelayedHeightmapModification to update all the LOD and vegetation information.