static public int AdjustItemsSize(IntPtr l) { try { FairyGUI.GList self = (FairyGUI.GList)checkSelf(l); self.AdjustItemsSize(); pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static int AdjustItemsSize(IntPtr L) { try { ToLua.CheckArgsCount(L, 1); FairyGUI.GList obj = (FairyGUI.GList)ToLua.CheckObject(L, 1, typeof(FairyGUI.GList)); obj.AdjustItemsSize(); return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }