清除材质属性值。
Graphics.RenderMesh 复制传递的属性块,因此使用它的最有效方法是创建一个块并将其重用于所有 DrawMesh 调用。使用 Clear 清除块的值,并使用 SetFloat、SetVector、SetColor、SetMatrix 添加值。
using UnityEngine;
public class Example : MonoBehaviour { Mesh aMesh; Material aMaterial = new Material(Shader.Find("VertexLit"));
void Update() { MaterialPropertyBlock materialProperty = new MaterialPropertyBlock();
// Clear any property and add a red color materialProperty.Clear(); materialProperty.SetColor("_Color", Color.red); Graphics.DrawMesh(aMesh, new Vector3(5, 0, 0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty);
// Clear any property and add a green color materialProperty.Clear(); materialProperty.SetColor("_Color", Color.green); Graphics.DrawMesh(aMesh, new Vector3(-5, 0, 0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty); } }