bevy_entitiles 0.4.0

A 2d tilemap library for bevy. With many useful algorithms/tools built in.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use bevy::app::Plugin;

use self::path::{PathTile, PathTilemap};

pub mod path;

pub struct EntiTilesAlgorithmTilemapPlugin;

impl Plugin for EntiTilesAlgorithmTilemapPlugin {
    fn build(&self, app: &mut bevy::prelude::App) {
        app.register_type::<PathTilemap>()
            .register_type::<PathTile>();
    }
}