static int _g_get_bounds(RealStatePtr L) { try { ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); Pathfinding.Voxels.VoxelContourSet gen_to_be_invoked = (Pathfinding.Voxels.VoxelContourSet)translator.FastGetCSObj(L, 1); translator.PushUnityEngineBounds(L, gen_to_be_invoked.bounds); } catch (System.Exception gen_e) { return(LuaAPI.luaL_error(L, "c# exception:" + gen_e)); } return(1); }
static int _s_set_conts(RealStatePtr L) { try { ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); Pathfinding.Voxels.VoxelContourSet gen_to_be_invoked = (Pathfinding.Voxels.VoxelContourSet)translator.FastGetCSObj(L, 1); gen_to_be_invoked.conts = (System.Collections.Generic.List <Pathfinding.Voxels.VoxelContour>)translator.GetObject(L, 2, typeof(System.Collections.Generic.List <Pathfinding.Voxels.VoxelContour>)); } catch (System.Exception gen_e) { return(LuaAPI.luaL_error(L, "c# exception:" + gen_e)); } return(0); }
static int _s_set_bounds(RealStatePtr L) { try { ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); Pathfinding.Voxels.VoxelContourSet gen_to_be_invoked = (Pathfinding.Voxels.VoxelContourSet)translator.FastGetCSObj(L, 1); UnityEngine.Bounds gen_value; translator.Get(L, 2, out gen_value); gen_to_be_invoked.bounds = gen_value; } 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.Voxels.VoxelContourSet gen_ret = new Pathfinding.Voxels.VoxelContourSet(); 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.Voxels.VoxelContourSet constructor!")); }