x | 要读取的 x 偏移量。 |
y | 要读取的 y 偏移量。 |
width | 要读取的 alpha 地图区域的宽度。 |
height | 要读取的 alpha 地图区域的高度。 |
float[,,] 一个三维浮点数数组,其中第三个维度表示每个 x,y 坐标处每个 splatmap 的混合权重。
返回给定宽度和高度的 x, y 位置处的 alpha 地图。
返回的数组是三维的 - 前两个维度表示地图上的 x 和 y 坐标,而第三个维度表示 alpha 地图应用到的 splatmap 纹理。
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { // Add some random "noise" to the alphamaps. void AddAlphaNoise(Terrain t, float noiseScale) { float[,,] maps = t.terrainData.GetAlphamaps(0, 0, t.terrainData.alphamapWidth, t.terrainData.alphamapHeight);
for (int y = 0; y < t.terrainData.alphamapHeight; y++) { for (int x = 0; x < t.terrainData.alphamapWidth; x++) { float a0 = maps[x, y, 0]; float a1 = maps[x, y, 1];
a0 += Random.value * noiseScale; a1 += Random.value * noiseScale;
float total = a0 + a1;
maps[x, y, 0] = a0 / total; maps[x, y, 1] = a1 / total; } }
t.terrainData.SetAlphamaps(0, 0, maps); } }