bevy_ecs_tilemap 0.18.1

A tilemap rendering plugin for bevy which is more ECS friendly by having an entity per tile.
Documentation
1
2
3
4
5
6
7
8
9
#define_import_path bevy_ecs_tilemap::vertex_output

struct MeshVertexOutput {
    @builtin(position) position: vec4<f32>,
    @location(0) uv: vec4<f32>,
    @location(1) color: vec4<f32>,
    @location(2) @interpolate(flat) tile_id: i32,
    @location(3) storage_position: vec2<u32>,
}