예제 #1
0
        public static GUIStyle Get(string skin, string name, bool copy = false)
        {
            var guiSkin = FileManager.GetAsset <GUISkin>(skin);

            return(Style.Get(guiSkin, name, copy));
        }
예제 #2
0
 public static GUIStyle Get(string name, bool copy = false)
 {
     return(Style.Get(GUI.skin, name, copy));
 }