Version: 2018.1
public void SetHeights (int xBase, int yBase, float[,] heights);

Parameters

xBaseНазначает массив образцов карт высот.
yBaseНазначает массив образцов карт высот.
heightsArray of heightmap samples to set (values range from 0 to 1, array indexed as [y,x]).

Description

Назначает массив образцов карт высот.

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].

This method recomputes all the LOD and vegetation information for the terrain on each call, which can be computationally expensive. In interactive editing scenarios, it may be better to call TerrainData.SetHeightsDelayLOD instead, followed by Terrain.ApplyDelayedHeightmapModification when the user completes an editing action.