UnityEngine.Material.GetMatrixArray C# (CSharp) Method

GetMatrixArray() public method

Get a named matrix array.

public GetMatrixArray ( string name ) : UnityEngine.Matrix4x4[]
name string The name of the property.
return UnityEngine.Matrix4x4[]
        public Matrix4x4[] GetMatrixArray(string name)
        {
            return this.GetMatrixArray(Shader.PropertyToID(name));
        }

Same methods

Material::GetMatrixArray ( int nameID ) : UnityEngine.Matrix4x4[]
Material::GetMatrixArray ( int nameID, List values ) : void
Material::GetMatrixArray ( string name, List values ) : void