版本: Unity 6 (6000.0)
语言英语
  • C#

TerrainData.GetAlphamaps

建议修改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实会阅读用户提供的每个建议修改,并在适用的情况下进行更新。

关闭

提交失败

由于某些原因,您的建议修改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public float[,,] GetAlphamaps(int x, int y, int width, int height);

参数

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); } }