Crates.io | fly_bevy |
lib.rs | fly_bevy |
version | 0.10.2 |
source | src |
created_at | 2023-05-17 14:08:49.588043 |
updated_at | 2023-05-17 15:12:27.614342 |
description | Cool utilities for the Bevy game engine |
homepage | https://github.com/hiro-codes/fly_bevy |
repository | https://github.com/hiro-codes/fly_bevy |
max_upload_size | |
id | 866973 |
size | 5,778 |
Cool utilities for the Bevy game engine.
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();
}
fly_bevy's crate version follows bevy's minor version:
bevy | fly_bevy |
---|---|
0.10.* |
0.10.* |