bevy_ecs_tilemap
A tilemap rendering plugin for bevy
. It is more ECS friendly as it makes tiles entities.
animation
example.
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.
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
accessing_tiles
– An example showing how one can access tiles from the map object by using tile map coordinates.animation
– Basic CPU animation example.atlas_spacing
– Usage of atlas textures with multiple rows and spacing.bench
- A stress test of the map rendering system. Takes a while to load.dynamic_map
- A random map that is only partial filled with tiles that changes every so often.game_of_life
- A game of life simulator.hex_column
- A map that is meshed using “pointy” hexagons.hex_row
- A map that is meshed using flat hexagons.iso_diamond
- An isometric meshed map using diamond ordering.iso_staggered
- An isometric meshed map using staggered ordering.layers
- An example of how you can use multiple map entities/components for “layers”.ldtk
- An example of loading and rendering of a LDTK map which requires the ldtk
feature. Use: cargo run --example ldtk --features ldtk
map
- The simplest example of how to create a tile map.random_map
- A bench of editing all of the tiles every 100 ms.remove_tiles
- An example showing how you can remove tiles by using map_querysparse_tiles
- An example showing how to generate a map where not all of the tiles exist for a given square in the tile map.tiled
- An example of loading and rendering of a tiled map editor map which requires the tiled_map
feature. Use: cargo run --example tiled --features tiled_map
tiled_rotate
- An example of loading and rendering of a tiled map editor map with flipping and rotation.requires the tiled_map
feature. Use: cargo run --example tiled_rotate --features tiled_map
visibility
- An example showcasing visibility of tiles and chunks.
cargo run --release --example map
cargo build --target wasm32-unknown-unknown --example animation --release --features atlas
wasm-server-runner .\target\wasm32-unknown-unknown\release\examples\animation.wasm