static int _s_set_splitAtEveryPortal(RealStatePtr L) { try { ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); Pathfinding.FunnelModifier gen_to_be_invoked = (Pathfinding.FunnelModifier)translator.FastGetCSObj(L, 1); gen_to_be_invoked.splitAtEveryPortal = LuaAPI.lua_toboolean(L, 2); } catch (System.Exception gen_e) { return(LuaAPI.luaL_error(L, "c# exception:" + gen_e)); } return(0); }
static int _g_get_unwrap(RealStatePtr L) { try { ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); Pathfinding.FunnelModifier gen_to_be_invoked = (Pathfinding.FunnelModifier)translator.FastGetCSObj(L, 1); LuaAPI.lua_pushboolean(L, gen_to_be_invoked.unwrap); } 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) { Pathfinding.FunnelModifier gen_ret = new Pathfinding.FunnelModifier(); 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.FunnelModifier constructor!")); }
static int _m_Apply(RealStatePtr L) { try { ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); Pathfinding.FunnelModifier gen_to_be_invoked = (Pathfinding.FunnelModifier)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)); } }