Example #1
0
        static int _s_set_OnNewFrame(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                GGame.Hybird.UISever gen_to_be_invoked = (GGame.Hybird.UISever)translator.FastGetCSObj(L, 1);
                gen_to_be_invoked.OnNewFrame = translator.GetDelegate <System.Func <int, GGame.Hybird.Frame> >(L, 2);
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(0);
        }
Example #2
0
        static int _g_get_OnNewFrame(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                GGame.Hybird.UISever gen_to_be_invoked = (GGame.Hybird.UISever)translator.FastGetCSObj(L, 1);
                translator.Push(L, gen_to_be_invoked.OnNewFrame);
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(1);
        }
Example #3
0
        static int __CreateInstance(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                if (LuaAPI.lua_gettop(L) == 1)
                {
                    GGame.Hybird.UISever gen_ret = new GGame.Hybird.UISever();
                    translator.Push(L, gen_ret);

                    return(1);
                }
            }
            catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(LuaAPI.luaL_error(L, "invalid arguments to GGame.Hybird.UISever constructor!"));
        }
Example #4
0
        static int _m_Hide(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


                GGame.Hybird.UISever gen_to_be_invoked = (GGame.Hybird.UISever)translator.FastGetCSObj(L, 1);



                {
                    string _name = LuaAPI.lua_tostring(L, 2);

                    gen_to_be_invoked.Hide(_name);



                    return(0);
                }
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
        }