static public int ClearShowingScrollView(IntPtr l) { try { UI.Controller.ControllerBase self = (UI.Controller.ControllerBase)checkSelf(l); self.ClearShowingScrollView(); pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
public static void UnRecordShowingWin(string uiName, UILevel eLev) { if (showingWindows.Contains(uiName)) { showingWindows.Remove(uiName); CleanCurDepth(eLev); } ControllerBase controller = GetControler(uiName); controller.ClearShowingScrollView(); if (controller._needSceneBlur) { AutoSceneBlur(); } }