bevy_flycam

Crates.io Crates.io docs.rs

A basic first-person fly camera for Bevy 0.10

Controls

Comparison

There are a few notable differences from bevyflycamera...

Usage

  1. Add to Cargo.toml or copy lib.rs to your own file toml [dependencies] bevy = "0.10" bevy_flycam = "*"

or

toml [dependencies] bevy = "0.10" bevy_flycam = { git = "https://github.com/sburris0/bevy_flycam" }

  1. Include the prelude: rust use bevy_flycam::prelude::*; This will spawn a camera for you. Use NoCameraPlayerPlugin if you do not want this and make sure to use .insert(FlyCam) on your own camera or else this plugin won't know what to move.

  2. Add the PlayerPlugin: ```rust

    [bevy_main]

fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(PlayerPlugin) .run(); } ```

Alternatively you can see the example basic.rs or scroll.rs located in the examples folder. You can run the example by cloning this repository and run the command: cargo run --release --example basic

Customization

To modify player movement speed or mouse sensitivity add it as a resource.
Same thing goes for the keybindings used for moving the camera. ```Rust

[bevy_main]

fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(PlayerPlugin) .insertresource(MovementSettings { sensitivity: 0.00015, // default: 0.00012 speed: 12.0, // default: 12.0 }) .insertresource(KeyBindings { moveascend: KeyCode::E, movedescend: KeyCode::Q, ..Default::default() }) .run(); } ```

Support

Bevy tracking

bevyflycam's crate version follows bevy's minor version as shown: | bevy | bevyflycam | | :-- | :-- | | 0.10.X | 0.10 |

Contributing

PRs are very welcome.