UnityEditor.ParticleSystemStyles.FindStyle C# (CSharp) Method

FindStyle() private static method

private static FindStyle ( string styleName ) : GUIStyle
styleName string
return UnityEngine.GUIStyle
        private static GUIStyle FindStyle(string styleName)
        {
            return styleName;
        }

Usage Example

Esempio n. 1
0
 private static void InitStyle(out GUIStyle normal, string name)
 {
     normal = ParticleSystemStyles.FindStyle(name);
 }