Code: Select all
-- fake code
tile_type, floor_height, ceiling_height, {list, of, objects, at, this, coordinate}, other, variables = map.layer:getInfo(x,y)
Code: Select all
-- more fake code
table = getMapLayer(level)
-- table containing all the layers much like the generated layout in dungeons.lua
--
--
Question 2: Is there way to force objects to a certain point within a tile? I was looking at the MapGraphicsComponent and there's a few curious methods that may do this. I could be wrong. The result I'm looking for requires more in-depth placement then just facing a cardinal direction something like theObj.controller.pushObj(280,891) from it's starting location on a tile. (Example Use: push a few levers so they're all lined up next to one another on one wall; they do, only, require a mouse click to use so I see no reason to have them bunched together, if possible).