5 unstable releases

new 0.3.1 Apr 24, 2024
0.3.0 Apr 13, 2024
0.2.0 Mar 12, 2024
0.1.1 Jan 24, 2024
0.1.0 Jan 2, 2024

#499 in Game dev

Download history 2/week @ 2024-01-21 19/week @ 2024-02-18 11/week @ 2024-02-25 137/week @ 2024-03-10 4/week @ 2024-03-17 82/week @ 2024-03-31 112/week @ 2024-04-07 70/week @ 2024-04-14 146/week @ 2024-04-21

410 downloads per month

MIT license

420KB
989 lines

bevy_dev

crates.io docs.rs

Dev tools for Bevy Engine. For faster prototyping.

Showcase

Features

  • Debug camera - tool for getting another perspective to the scene, also known as fly camera.
  • Prototype material - simple, metrically correct, PBR compatible and randomly painted mesh for better differentiation of prototype objects.

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.

Dependencies

~43–83MB
~1.5M SLoC