Background
I am working on a 2D game with Bevy. I want to use tilesets with tiled. I have found the crate bevy_ecs_tilemap and I looks promising for an easy solution. I have a file structure like this and want to load world.tmx
tilesets
├── floor
│ ├── ground.tiled-project
│ ├── ground.tiled-session
│ ├── ground.tsx
│ ├── Rules
│ │ └── autotile rules.tmx
│ ├── rules.txt
│ └── world.tmx
└── test.tmx
The problem
I followed the example supplied for working with tiled but when I run it I get this error WARN bevy_asset::asset_server: encountered an error while loading an asset: Could not load TMX map: Could not open 'tilesets/floor/ground.tsx'. Error: No such file or directory (os error 2)
even though I does exist.
What I have tried
I have tried using a tilemap that does not depend on anything and it does work (that is what the test.tmx is)