UnityEditor.MaterialEditor.SetVector C# (CSharp) Method

SetVector() private method

private SetVector ( string propertyName, Vector4 value ) : void
propertyName string
value Vector4
return void
        public void SetVector(string propertyName, Vector4 value)
        {
            foreach (Material material in base.targets)
            {
                material.SetVector(propertyName, value);
            }
        }
MaterialEditor