Skip to main content

MaterialPropertyBlock.SetMatrixArray(string name, Matrix4x4[] values)

Set a matrix array property.

Parameters:

NameTypeDescription
namestringThe name of the property.
valuesMatrix4x4[]The array to set.

Usage

---@type MaterialPropertyBlock
local materialpropertyblock;

---@type string
local name;

---@type Matrix4x4
local values;


materialpropertyblock.SetMatrixArray(name, values)

Extra Detail

Adds a matrix array property to the block. If a matrix array property with the given name already exists, the old value is replaced. The array length can't be changed once it has been added to the block. If you subsequently try to set a longer array into the same property, the length will be capped to the original length and the extra items you tried to assign will be ignored. If you set a shorter array than the original length, your values will be assigned but the original values will remain for the array elements beyond the length of your new shorter array.