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 can be edited, but the defaults are:
```rust use bevy::prelude::*; use bevyflycamera::{FlyCamera, FlyCameraPlugin};
fn setup(mut commands: Commands) { commands .spawn(Camera3dComponents::default()) .with(FlyCamera::default()); }
fn main() { App::build() .addplugins(DefaultPlugins) .addstartupsystem(setup.system()) .addplugin(FlyCameraPlugin) .run(); } ```
Check out the simple example
| Bevy Version | bevy_fly_camera
Version |
| ------------ | ------------------------- |
| 0.1.0
| 0.1.1
|
| 0.1.3
| 0.3.0
|
| 0.2
| 0.4.0
|
| 0.2.1
| 0.4.1
|
| 0.3.0
| 0.5.0
|
| 0.4.0
| 0.6.0
|