Vixenka / bevy_dev

Dev tools for Bevy Engine
https://crates.io/crates/bevy_dev
MIT License
21 stars 2 forks source link
bevy developer-tools devtools game-development

bevy_dev

crates.io docs.rs

Dev tools for Bevy Engine. For faster prototyping.

Showcase

Features

Usage

Add DevPlugins to Bevy's App.

use bevy::prelude::*;
use bevy_dev::prelude::*;

#[bevy_main]
fn main() {
    App::new()
        .add_plugins((DefaultPlugins, DevPlugins))
        .run();
}

Bevy compability

bevy bevy_dev
0.13.2 0.3 - 0.3.1
0.13.0 0.2
0.12.1 0.1 - 0.1.1

Read more in the changelog.

License

bevy_dev is licensed under the MIT license.