Legacy Documentation: Version 5.4
LanguageEnglish
  • C#
  • JS

Script language

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

Material.SetMatrixArray

Switch to Manual
public void SetMatrixArray(string name, Matrix4x4[] values);
public void SetMatrixArray(int nameID, Matrix4x4[] values);

Parameters

name Property name.
values Array of values to set.
nameID Property name ID, use Shader.PropertyToID to get it.

Description

Set a matrix array property.

Sets a matrix array property on the material. If a matrix array property with the given name already exists, the old value is replaced.

Array length can't be changed once it is added to the block. If you set an array of different length for a second time, the number of elements to be replaced will be capped to the minimum of the old and the new array and the rest will stay untouched.

See Also: SetVectorArray, SetColorArray, SetFloatArray.