fly_bevy 0.10.2

Cool utilities for the Bevy game engine
Documentation
  • Coverage
  • 0%
    0 out of 4 items documented0 out of 2 items with examples
  • Size
  • Source code size: 104.56 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 6.7 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 2m 14s Average build duration of successful builds.
  • all releases: 2m 14s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • 0xhiro

Fly Bevy

Crates.io Crates.io docs.rs

Cool utilities for the Bevy game engine.

Utilities

  • Global flying camera

Camera Controls

  • WASD to move horizontally

Usage

  1. Add fly_bevy to your Cargo.toml

    [dependencies]
    bevy = "0.10.*"
    fly_bevy = "0.10.2"
    
  2. Import the prelude:

    use fly_bevy::prelude::*;
    
  3. Add your desired plugins:

    fn main() {
        App::new()
            .add_plugins(DefaultPlugins)
            .add_plugin(GlobalCamPlugin)
            .run();
    }
    

Bevy version compatibility

Bevy tracking

fly_bevy's crate version follows bevy's minor version:

bevy fly_bevy
0.10.* 0.10.*