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