static int _s_set_t(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                TestForLuaChangeAtRuntime gen_to_be_invoked = (TestForLuaChangeAtRuntime)translator.FastGetCSObj(L, 1);
                gen_to_be_invoked.t = (UnityEngine.UI.Text)translator.GetObject(L, 2, typeof(UnityEngine.UI.Text));
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(0);
        }
        static int _s_set_speed(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                TestForLuaChangeAtRuntime gen_to_be_invoked = (TestForLuaChangeAtRuntime)translator.FastGetCSObj(L, 1);
                gen_to_be_invoked.speed = (float)LuaAPI.lua_tonumber(L, 2);
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(0);
        }
        static int _g_get_t(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                TestForLuaChangeAtRuntime gen_to_be_invoked = (TestForLuaChangeAtRuntime)translator.FastGetCSObj(L, 1);
                translator.Push(L, gen_to_be_invoked.t);
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(1);
        }
        static int __CreateInstance(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                if (LuaAPI.lua_gettop(L) == 1)
                {
                    TestForLuaChangeAtRuntime gen_ret = new TestForLuaChangeAtRuntime();
                    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 TestForLuaChangeAtRuntime constructor!"));
        }
        static int _m_Logger(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


                TestForLuaChangeAtRuntime gen_to_be_invoked = (TestForLuaChangeAtRuntime)translator.FastGetCSObj(L, 1);



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

                    gen_to_be_invoked.Logger(_msg);



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