Replies: 1 comment 1 reply
-
The lines like: #[cfg(feature = "atlas")] Are doing conditional compilation based on A very simple workaround is to add such a feature to your project with something like: [features]
atlas = ["bevy_ecs_tilemap/atlas"] In your The There may also be various import paths that need adjusting if the structure of your project is different. Note: the current disposition of the maintainer of this project is that the |
Beta Was this translation helpful? Give feedback.
-
So I've tried rendering out a simple tilemap I've made but I'm having issues importing the "helper" files from the examples repo to get a simple render going.
When I add the "tiled.rs" file to my project it's just full of errors and I don't know how to solve them. I don't even know if it's an issue with my project or the helper files?
Can someone point me in the correct direction to render a simple tilemap?
Beta Was this translation helpful? Give feedback.
All reactions