UnityEditor.ParticleSystemStyles.FindStyle C# (CSharp) 메소드

FindStyle() 개인적인 정적인 메소드

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

Usage Example

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