Exemple #1
0
 public static void BeautyDrawerOnGUI()
 {
     if (Event.current.type == EventType.Repaint && BeautyDrawer.ShouldShow())
     {
         BeautyDrawer.DrawBeautyAroundMouse();
     }
 }
Exemple #2
0
 public static void BeautyDrawerOnGUI()
 {
     if (Event.current.type != EventType.Repaint || !BeautyDrawer.ShouldShow())
     {
         return;
     }
     BeautyDrawer.DrawBeautyAroundMouse();
 }
 public static void EnvironmentInspectOnGUI()
 {
     if (Event.current.type == EventType.Repaint && EnvironmentInspectDrawer.ShouldShow())
     {
         BeautyDrawer.DrawBeautyAroundMouse();
         EnvironmentInspectDrawer.DrawInfoWindow();
     }
 }