UnityEditor.MaterialEditor.SetTexture C# (CSharp) Method

SetTexture() private method

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