Crates.io | bevy_tilemap |
lib.rs | bevy_tilemap |
version | 0.4.0 |
source | src |
created_at | 2020-11-04 09:03:57.657909 |
updated_at | 2021-04-07 08:29:25.657303 |
description | Tilemaps with chunks for the Bevy game engine, a simple-driven game engine and app framework |
homepage | |
repository | https://github.com/joshuajbouw/bevy_tilemap |
max_upload_size | |
id | 308557 |
size | 961,658 |
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 project is still experimental and the API will likely break often before the first release. It uses an experimental game engine which too may break the API. Semantic versioning will be followed as much as possible and the contributors will as much as they possibly can try to keep the API stable.
If you have API suggestions, now is the time to do it.
This is not intended to be just another Tilemap. 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:
[dependencies]
bevy = "0.5"
bevy_tilemap = "0.4"
At the most basic implementation, there is not a whole lot that is required to get the tilemap going as shown below.
use bevy_tilemap::prelude::*;
use bevy::asset::HandleId;
use bevy::prelude::*;
// This must be set in Asset<TextureAtlas>.
let texture_atlas_handle = Handle::weak(HandleId::random::<TextureAtlas>());
let mut tilemap = Tilemap::new(texture_atlas_handle, 32, 32);
// Coordinate point with Z order.
let point = (16, 16, 0);
let tile_index = 0;
tilemap.set_tile(point, tile_index);
tilemap.spawn_chunk_containing_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.
bevy_tilemap
is only guaranteed to work from stable Rust toolchain and up. This
is to be inline with the rest of Bevy engine.
Once you have a development environment, Bevy Tilemap can be fetched using git:
$ git clone --recursive https://github.com/joshuajbouw/bevy_tilemap/
and then built using cargo:
$ cargo build --example random_dungeon
cargo can also be used to run tests:
$ cargo test