UnityEngine.Material.GetVectorArray C# (CSharp) Method

GetVectorArray() public method

Get a named vector array.

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

Same methods

Material::GetVectorArray ( int nameID ) : Vector4[]
Material::GetVectorArray ( int nameID, List values ) : void
Material::GetVectorArray ( string name, List values ) : void