FairyGUI.GRoot.CloseModalWait C# (CSharp) Метод

CloseModalWait() публичный Метод

Hide modal layer and waiting sign.
public CloseModalWait ( ) : void
Результат void
        public void CloseModalWait()
        {
            if (_modalWaitPane != null && _modalWaitPane.parent != null)
                RemoveChild(_modalWaitPane);
        }

Usage Example

Пример #1
0
 static public int CloseModalWait(IntPtr l)
 {
     try {
         FairyGUI.GRoot self = (FairyGUI.GRoot)checkSelf(l);
         self.CloseModalWait();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.GRoot::CloseModalWait