So I am trying to use Tiled to make map to my game, but when I try to apply the map to my code nothing happens on simulator. All I get is an error in debug: Tileset image (path\sewertileset.png) not found
Weird thing is that the path is correct. I have 2 hdds so I made the same path to the other one just in case but nothing.
Here is the code:
local physics = require “physics”
local tiledMap = require(“Dusk.Dusk”)
physics.start()
physics.setGravity( 0, 10 )
physics.setDrawMode(“hybrid”)
map = tiledMap.buildMap(“testing.json”)
map.x = display.contentCenterX
map.y = display.contentCenterY