Cool utilities for the Bevy game engine.
Add fly_bevy to your Cargo.toml
toml
[dependencies]
bevy = "0.10.*"
fly_bevy = "0.10.2"
Import the prelude:
rust
use fly_bevy::prelude::*;
Add your desired plugins:
rust
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_plugin(GlobalCamPlugin)
.run();
}
flybevy's crate version follows bevy's minor version:
| bevy | flybevy |
| :-- | :-- |
| 0.10.*
| 0.10.*
|