bevy_ecs_tilemap

Crates.io docs license Crates.io

A tilemap rendering plugin for bevy. It is more ECS friendly as it makes tiles entities.

Features

Upcoming Features

Screenshots

iso hex

How Does This Work?

Quite simple there is a tile per entity. Behind the scenes the tiles are split into chunks that each have their own mesh which is sent to the GPU in an optimal way.

Why Use This Instead of X?

Because each tile is an entity of its own editing tiles is super easy and convenient. This allows you to tag entities for updating and makes stuff like animation easier. Want to have a mining simulation where damage is applied to tiles? That’s easy with this plugin:

```rust struct Damage { amount: u32, }

fn updatedamage( mut query: Query<(&mut Tile, &Damage), Changed>, ) { for (mut tile, damage) in query.itermut() { tile.textureindex = TILEDAMAGE_OFFSET + damage.amount; } } ```

Examples

Running Examples

cargo run --release --example basic

Running examples on web!

cargo build --target wasm32-unknown-unknown --example animation --release --features atlas wasm-server-runner .\target\wasm32-unknown-unknown\release\examples\animation.wasm

Known Issues

Bevy Compatibility

|bevy|bevyecstilemap| |---|---| |0.8|0.7| |0.7|0.6| |0.6|0.5|

Asset credits