Skip to main content

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

Sets a matrix array property.

Parameters:

NameTypeDescription
namestringProperty name.
valuesMatrix4x4[]Array of values to set.

Usage

---@type Material
local material;

---@type string
local name;

---@type Matrix4x4
local values;


material.SetMatrixArray(name, values)