I am able to create a map using Tiled map editor (http://www.mapeditor.org/) and Load it in corona using this library (http://developer.coronalabs.com/code/gridmap). I created a maze map in tiled map editor, but I don't know how to set the wall to be non walkable. Any help, ideas, links would be much appreciated. Thank you guys.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I'm not sure how Tiled works or how large your map is.. or if your even still having trouble with this. However, recently I was working on an app where I needed an object to collide with walls (in a room/building). What I did was created the image on the entire room (walls and all) in Photoshop. Then I set it as the background and just used rectangles (display.newRect) to create invisible walls that were displayed beneath my room image. You could try something similar if you are still looking for ideas. for example:
In this fasion I was able to map out the walls in the image with actual rectangles and add them to physics so I could collide with them, all the while the user thinks they are colliding with the walls in my image. |
|||
|
|