返回介绍

MaterialPropertyBlock.Clear 清除

发布于 2019-12-18 15:37:58 字数 2768 浏览 1060 评论 0 收藏 0

JavaScript => public function Clear(): void;
C# => public void Clear();

Description 描述

Clear material property values.

清除材质属性值。

Graphics.DrawMesh copies the passed property block, so the most efficient way of using it is to create one block and reuse it for all DrawMesh calls. Use Clear to clear block's values, and SetFloat, SetVector, SetColor, SetMatrix to add values.

Graphics.DrawMesh 拷贝传递属性块,因此最有效的方式是使用它为所有DrawMesh调用来创建一个属性块并重用。使用Clear来清除块的值,以及 SetFloat、SetVector、SetColor、SetMatrix来添加值。

JavaScript:

	var aMesh : Mesh;
	var aMaterial : Material = new Material(Shader.Find("VertexLit"));
 
	function Update() {
		var materialProperty : MaterialPropertyBlock = new MaterialPropertyBlock();
 
		// Clear any property and add a red color
		materialProperty.Clear();
		materialProperty.SetColor("_Color", Color.red);
		Graphics.DrawMesh(aMesh, 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, Vector3(-5,0,0), Quaternion.identity,
				  aMaterial, 0, null, 0, materialProperty);
	}

C#:

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

MaterialPropertyBlock

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文