Chunk based tilemap for Bevy game engine.
This is not intended to be just another Tile Map. It is meant to be a framework and extensible by design, like Bevy. There is an emphasis placed on generic traits to accomplish that. As well as work done to keep it as close to Bevy API as possible. This allows anyone to create their own tiles, chunks and maps and still retain the speed of a handcrafted multi-threaded chunk loader and tile map.
Once Bevy 0.3 is released, this will be published.
Add to your Cargo.toml
file:
```toml
[patch.crates-io]
bevy = { git = "https://github.com/bevyengine/bevy", branch = "master" }
[dependencies] bevy = 0.2 bevytilemap = { git = "https://github.com/joshuajbouw/bevytilemap", branch = "master" } ```
There will be more work done on examples in the very near future. For now, you can check out a quick
but non-interactive example with:
cargo run --example random_dungeon