Select your preferred scripting language. All code snippets will be displayed in this language.
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.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Closename | Property name. |
values | Array of values to set. |
nameID | Property name ID, use Shader.PropertyToID to get it. |
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.
Array parameters are not exposed in the material inspector, nor serialized with the material asset. But they can be set and queried with SetFloatArray
, SetColorArray
, SetVectorArray
, SetMatrixArray
and the corresponding getters from scripts at runtime.
See Also: GetMatrixArray.