コード例 #1
0
ファイル: GUILayout.cs プロジェクト: qipa/UnityDecompiled-2
 public static Rect Window(int id, Rect screenRect, GUI.WindowFunction func, GUIContent content, GUIStyle style, params GUILayoutOption[] options)
 {
     return(GUILayout.DoWindow(id, screenRect, func, content, style, options));
 }
コード例 #2
0
ファイル: GUILayout.cs プロジェクト: qipa/UnityDecompiled-2
 public static Rect Window(int id, Rect screenRect, GUI.WindowFunction func, Texture image, params GUILayoutOption[] options)
 {
     return(GUILayout.DoWindow(id, screenRect, func, GUIContent.Temp(image), GUI.skin.window, options));
 }