Version: 5.6
public void Clear ();

説明

設定したマテリアルプロパティーをすべて削除します。

Graphics.DrawMesh がもっとも効率的な方法となるのは渡されたプロパティーブロックをコピーして すべての DrawMesh 呼び出しでひとつのブロックを作成してそれを再利用することです。Clear を使用してブロックの値をクリアし、 SetFloatSetVectorSetColorSetMatrix により値を追加します。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Mesh aMesh; public Material aMaterial = new Material(Shader.Find("VertexLit")); void Update() { MaterialPropertyBlock materialProperty = new MaterialPropertyBlock(); materialProperty.Clear(); materialProperty.SetColor("_Color", Color.red); Graphics.DrawMesh(aMesh, new Vector3(5, 0, 0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty); materialProperty.Clear(); materialProperty.SetColor("_Color", Color.green); Graphics.DrawMesh(aMesh, new Vector3(-5, 0, 0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty); } }