Chunk based tilemap for Bevy game engine.
Bevy Tilemap allows for Bevy native batch-rendered tiles in maps to be constructed with chunk based loading, efficiently.
Simple yet refined in its implementation, it is meant to attach to other extensible plugins that can enhance its functionality further. Hand-crafted tilemaps with an attentive focus on performance, and low data usage.
This is not intended to be just another Tile Map. It is meant to be a framework and extensible by design, like Bevy. As well as work done to keep it as close to Bevy API as possible while keeping in mind of Rust API best practices. It is not meant to be complicated and created to be simple to use but give enough functionality to advanced users.
Less time fiddling, more time building.
Add to your Cargo.toml
file:
toml
[dependencies]
bevy = 0.3
bevy_tilemap = 0.1
At the most basic implementation, there is not a whole lot that is required to get the tilemap going as shown below.
```rust use bevy_tilemap::prelude::; use bevy::asset::HandleId; use bevy::prelude::;
// This must be set in Asset
let mut tilemap = Tilemap::new(textureatlashandle);
// Coordinate point with Z order. let point = (16, 16, 0); let tileindex = 0; tilemap.settile(point, tile_index);
tilemap.spawnchunkcontaining_point(point); ```
Of course, using the Tilemap::builder()
this can be constructed with many more
advanced features.
With many more features planned for future updates to bring it up to par with other tilemap implementations for other projects.
There is still a lot to do but the API is now stable and should be fine for a while now. The next release is focused on added automated methods and system.
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