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.
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 a tile atlas that contains all the tiles which should be provided by you (see assets/).
If you dont require all of bevy_fast_tilemap
s performance and are looking for
more features and maturity, take a look at
bevyecstilemap which (among others) inspired
this work.
Check out the examples/ folder to get an overview. You can run the examples like this:
bash
cargo run --example updates
cargo run --example layers
cargo run --example iso
cargo run --example iso2
cargo run --example bench
|bevy|bevyfasttilemap| |---|---| |0.10.1|0.1.0| |0.10.1|0.2.0| |0.10.1|0.3.0|