Legacy Documentation: Version 5.2
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

MaterialPropertyBlock.AddVector

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public function AddVector(name: string, value: Vector4): void;
public void AddVector(string name, Vector4 value);
public function AddVector(nameID: int, value: Vector4): void;
public void AddVector(int nameID, Vector4 value);

Parameters

Description

Add a vector material property.

	// Draws 3 meshes with the same material but with different colors.

var aMesh : Mesh; var aMaterial : Material = new Material(Shader.Find("VertexLit"));

function Update() { var materialProperty : MaterialPropertyBlock = new MaterialPropertyBlock();

// red mesh materialProperty.Clear(); materialProperty.AddVector("_Color",Vector4(1,0,0,0.5)); Graphics.DrawMesh(aMesh, Vector3(0,0,0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty);

// green mesh materialProperty.Clear(); materialProperty.AddVector("_Color",Vector4(0,1,0,0.5)); Graphics.DrawMesh(aMesh, Vector3(5,0,0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty);

// blue mesh materialProperty.Clear(); materialProperty.AddVector("_Color", Vector4(0,0,1,0.5)); Graphics.DrawMesh(aMesh, Vector3(-5,0,0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty); }
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.AddVector("_Color", new Vector4(1, 0, 0, 0.5F)); Graphics.DrawMesh(aMesh, new Vector3(0, 0, 0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty); materialProperty.Clear(); materialProperty.AddVector("_Color", new Vector4(0, 1, 0, 0.5F)); Graphics.DrawMesh(aMesh, new Vector3(5, 0, 0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty); materialProperty.Clear(); materialProperty.AddVector("_Color", new Vector4(0, 0, 1, 0.5F)); Graphics.DrawMesh(aMesh, new Vector3(-5, 0, 0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty); } }

Function variant that takes nameID is faster. If you are adding properties with the same name repeatedly, use Shader.PropertyToID to get unique identifier for the name, and pass the identifier to AddVector.

	// Draws 3 meshes with the same material but with different colors.
	// Using the material tag ID.

var aMesh : Mesh; var aMaterial : Material = new Material(Shader.Find("VertexLit"));

function Update() { var materialProperty : MaterialPropertyBlock = new MaterialPropertyBlock(); var tagID : int = Shader.PropertyToID("_Color");

// red mesh materialProperty.Clear(); materialProperty.AddVector(tagID,Vector4(1,0,0,0.5)); Graphics.DrawMesh(aMesh, Vector3(0,0,0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty);

// green mesh materialProperty.Clear(); materialProperty.AddVector(tagID,Vector4(0,1,0,0.5)); Graphics.DrawMesh(aMesh, Vector3(5,0,0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty);

// blue mesh materialProperty.Clear(); materialProperty.AddVector(tagID, Vector4(0,0,1,0.5)); Graphics.DrawMesh(aMesh, Vector3(-5,0,0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty); }
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(); int tagID = Shader.PropertyToID("_Color"); materialProperty.Clear(); materialProperty.AddVector(tagID, new Vector4(1, 0, 0, 0.5F)); Graphics.DrawMesh(aMesh, new Vector3(0, 0, 0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty); materialProperty.Clear(); materialProperty.AddVector(tagID, new Vector4(0, 1, 0, 0.5F)); Graphics.DrawMesh(aMesh, new Vector3(5, 0, 0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty); materialProperty.Clear(); materialProperty.AddVector(tagID, new Vector4(0, 0, 1, 0.5F)); Graphics.DrawMesh(aMesh, new Vector3(-5, 0, 0), Quaternion.identity, aMaterial, 0, null, 0, materialProperty); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961