Exemplo n.º 1
0
 public static void EnvironmentStatsOnGUI()
 {
     if (Event.current.type == EventType.Repaint && EnvironmentStatsDrawer.ShouldShowWindowNow())
     {
         EnvironmentStatsDrawer.DrawInfoWindow();
     }
 }
Exemplo n.º 2
0
 public static void EnvironmentStatsOnGUI()
 {
     if (Event.current.type != EventType.Repaint || !EnvironmentStatsDrawer.ShouldShowWindowNow())
     {
         return;
     }
     EnvironmentStatsDrawer.DrawInfoWindow();
 }