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