Exemplo n.º 1
0
 public static void DeactivateLogWindow()
 {
     if (_currentLog != null && _currentLog.logWindow.activeSelf)
     {
         _currentLog.LogButton();
     }
 }
Exemplo n.º 2
0
 public static void DeactivateLogWindow()
 {
     if (current == null)
     {
         return;
     }
     else
     {
         if (current.logWindow.activeSelf)
         {
             current.LogButton();
         }
     }
 }