2 unstable releases
0.10.2 | May 17, 2023 |
---|---|
0.1.0 | May 17, 2023 |
#2010 in Game dev
29 downloads per month
5KB
72 lines
Fly Bevy
Cool utilities for the Bevy game engine.
Utilities
- Global flying camera
Camera Controls
- WASD to move horizontally
Usage
-
Add fly_bevy to your
Cargo.toml
[dependencies] bevy = "0.10.*" fly_bevy = "0.10.2"
-
Import the prelude:
use fly_bevy::prelude::*;
-
Add your desired plugins:
fn main() { App::new() .add_plugins(DefaultPlugins) .add_plugin(GlobalCamPlugin) .run(); }
Bevy version compatibility
fly_bevy's crate version follows bevy's minor version:
bevy | fly_bevy |
---|---|
0.10.* |
0.10.* |
Dependencies
~20–55MB
~1M SLoC