void OnClick() { if (popup != null) { list.Close(); popup.show(list, title); } }
static int Close(IntPtr L) { LuaScriptMgr.CheckArgsCount(L, 1); UIPopupList obj = (UIPopupList)LuaScriptMgr.GetUnityObjectSelf(L, 1, "UIPopupList"); obj.Close(); return(0); }
static public int Close_s(IntPtr l) { try { UIPopupList.Close(); pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static public int Close(IntPtr l) { try { UIPopupList self = (UIPopupList)checkSelf(l); self.Close(); pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static int Close(IntPtr L) { try { ToLua.CheckArgsCount(L, 0); UIPopupList.Close(); return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }
static int Close(IntPtr L) { try { ToLua.CheckArgsCount(L, 1); UIPopupList obj = (UIPopupList)ToLua.CheckObject(L, 1, typeof(UIPopupList)); obj.Close(); return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }
public static int Close(IntPtr l) { int result; try { UIPopupList uIPopupList = (UIPopupList)LuaObject.checkSelf(l); uIPopupList.Close(); LuaObject.pushValue(l, true); result = 1; } catch (Exception e) { result = LuaObject.error(l, e); } return(result); }
private static int Close(IntPtr L) { int result; try { ToLua.CheckArgsCount(L, 1); UIPopupList uIPopupList = (UIPopupList)ToLua.CheckObject(L, 1, typeof(UIPopupList)); uIPopupList.Close(); result = 0; } catch (Exception e) { result = LuaDLL.toluaL_exception(L, e, null); } return(result); }