UnityEditor.MaterialEditor.SetTexture C# (CSharp) 메소드

SetTexture() 개인적인 메소드

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