This is a really basic flying camera bundle and plugin for Bevy. It's useful for testing 3d games before you've coded your own movement system.
Keybinds are:
```rust use bevy::prelude::*; use bevyflycamera::{FlyCamera, FlyCameraPlugin};
fn setup(mut commands: Commands) { commands.spawn(FlyCamera::default()); }
fn main() { App::build() .adddefaultplugins() .addstartupsystem(setup.system()) .add_plugin(FlyCameraPlugin) .run(); } ```
Check out the simple example