示例#1
0
 private static bool GetAutoIsByClose(UIWIND_TYPE utype)
 {
     if (utype == UIWIND_TYPE.UI_SOLID || utype == UIWIND_TYPE.UI_SOLF)
     {
         return(false);
     }
     return(true);
 }
示例#2
0
 private static bool GetIsCloseOther(UIWIND_TYPE utype)
 {
     if (utype == UIWIND_TYPE.UI_TEMP || utype == UIWIND_TYPE.UI_SOLF)
     {
         return(false);
     }
     return(true);
 }
示例#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);
 }
示例#4
0
 public bool IsActiveWindos(UIWIND_TYPE type)
 {
     return(FEngineManager.IsActiveWindos(type));
 }