Ejemplo n.º 1
0
 private void DrawCenter()
 {
     GUILayout.BeginVertical(GUILayout.ExpandWidth(true));
     centerPanel.Draw();
     GUILayout.EndVertical();
 }
Ejemplo n.º 2
0
 private void DrawRightPanel()
 {
     GUILayout.BeginVertical(GUILayout.Width(300), GUILayout.ExpandWidth(true));
     rightPanel.Draw();
     GUILayout.EndVertical();
 }
Ejemplo n.º 3
0
 private void DrawLeftPanel()
 {
     GUILayout.BeginVertical(GUILayout.Width(200));
     leftPanel.Draw();
     GUILayout.EndVertical();
 }