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
15
16
17
18
use super::TiledColor;

pub(crate) fn default_onef() -> f32 {
    1.
}

pub(crate) fn default_true() -> bool {
    true
}

pub(crate) fn default_white() -> TiledColor {
    TiledColor {
        a: 1.,
        r: 1.,
        g: 1.,
        b: 1.,
    }
}