function AddMatrix (nameID : int, value : Matrix4x4) : void
Description
Add a matrix material property.
For performance reasons, the property block can contain only a limited number of property values.
Two 4x4 matrices, six vectors/colors or 12 floats can be stored in the block. Storage space for the values
is shared, so storing one matrix leaves twice less space to store vectors and floats. When block's
storage is filled up, additional Add calls will be ignored.
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 AddMatrix.
var rotateSpeed = 30;
var texture :
Texture;
var aMesh :
Mesh;
var m :
Material =
new Material (
"Shader \"Rotating
Texture\
" {" +
"Properties { _MainTex (\"Base\
", 2D) = \"white\
" {} }" +
"SubShader {" +
" Pass {" +
" Material { Diffuse (1,1,1,0) Ambient (1,1,1,0) }" +
" Lighting On" +
" SetTexture [_MainTex] {" +
" matrix [_Rotation]" +
" combine texture * primary double, texture" +
" }" +
" }" +
"}" +
"}");
m.mainTexture = texture;
function Update() {
var materialProperty : MaterialPropertyBlock =
new MaterialPropertyBlock();
var rot :
Quaternion =
Quaternion.Euler (0, 0,
Time.time * rotateSpeed);
var mtrx :
Matrix4x4 =
Matrix4x4.TRS (
Vector3.zero, rot,
Vector3(1,1,1) );
materialProperty.AddMatrix (
"_Rotation", mtrx);
Graphics.DrawMesh(aMesh,
Vector3(-5,0,0),
Quaternion.identity,
m, 0, null, 0, materialProperty);
}