Fast Tilemap for Bevy

Crates.io docs

GPU-accelerated tilemap functionality for bevy. Aims at rendering tilemaps with lightning speed by using just a single quad per map (layer) and offloading the actual rendering to GPU. This should be faster than most other bevy tilemap implementations as of this writing.

Features

Screenshots

layers iso

How it works

The whole tilemap (-layer) is rendered as a single quad and a shader cares for rendering the correct tiles at the correct position.

Thus each map layer works with two textures: One with integer data type, constructed and maintained internally for storing for each tile position which tile index should be displayed there. And one that contains all the tiles which should be provided by you (see [assets/](assets/)).

Limitations

Related work

If you dont require all of bevy_fast_tilemaps performance and are looking for more features and maturity, take a look at bevyecstilemap which (among others) inspired this work.

Examples

Check out the examples/ folder to get an overview. You can run the examples like this:

bash cargo run --example simple cargo run --example layers cargo run --example iso

Bevy Compatibility

|bevy|bevyfasttilemap| |---|---| |0.10.1|0.1.0| |0.10.1|0.2.0|