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

                Pathfinding.AdvancedSmooth gen_to_be_invoked = (Pathfinding.AdvancedSmooth)translator.FastGetCSObj(L, 1);
                gen_to_be_invoked.turnConstruct2 = (Pathfinding.AdvancedSmooth.ConstantTurn)translator.GetObject(L, 2, typeof(Pathfinding.AdvancedSmooth.ConstantTurn));
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(0);
        }
        static int _g_get_turnConstruct2(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                Pathfinding.AdvancedSmooth gen_to_be_invoked = (Pathfinding.AdvancedSmooth)translator.FastGetCSObj(L, 1);
                translator.Push(L, gen_to_be_invoked.turnConstruct2);
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(1);
        }
        static int _s_set_turningRadius(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

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


                Pathfinding.AdvancedSmooth gen_to_be_invoked = (Pathfinding.AdvancedSmooth)translator.FastGetCSObj(L, 1);



                {
                    PF.Path _p = (PF.Path)translator.GetObject(L, 2, typeof(PF.Path));

                    gen_to_be_invoked.Apply(_p);



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