Esempio n. 1
0
 private static bool GetAutoIsByClose(UIWIND_TYPE utype)
 {
     if (utype == UIWIND_TYPE.UI_SOLID || utype == UIWIND_TYPE.UI_SOLF)
     {
         return(false);
     }
     return(true);
 }
Esempio n. 2
0
 private static bool GetIsCloseOther(UIWIND_TYPE utype)
 {
     if (utype == UIWIND_TYPE.UI_TEMP || utype == UIWIND_TYPE.UI_SOLF)
     {
         return(false);
     }
     return(true);
 }
Esempio n. 3
0
 public static bool IsActiveWindos(UIWIND_TYPE type)
 {
     for (int i = 0; i < mActivePlane.Count; i++)
     {
         if (mActivePlane[i].nUiType == type)
         {
             return(true);
         }
     }
     return(false);
 }
Esempio n. 4
0
 public bool IsActiveWindos(UIWIND_TYPE type)
 {
     return(FEngineManager.IsActiveWindos(type));
 }