コード例 #1
0
 public static void EnvironmentStatsOnGUI()
 {
     if (Event.current.type == EventType.Repaint && EnvironmentStatsDrawer.ShouldShowWindowNow())
     {
         EnvironmentStatsDrawer.DrawInfoWindow();
     }
 }
コード例 #2
0
 public static void EnvironmentStatsOnGUI()
 {
     if (Event.current.type != EventType.Repaint || !EnvironmentStatsDrawer.ShouldShowWindowNow())
     {
         return;
     }
     EnvironmentStatsDrawer.DrawInfoWindow();
 }