bevy_fly_cam 0.1.2

A Simple Flycam plugin for Bevy 0.14
Documentation
  • Coverage
  • 28.57%
    4 out of 14 items documented0 out of 4 items with examples
  • Size
  • Source code size: 41.87 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 937.76 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 1m 51s Average build duration of successful builds.
  • all releases: 1m 51s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • JadonBelair/bevy_fly_cam
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • JadonBelair

bevy_fly_cam

A simple plugin to add a 3D free cam with fps controls to your Bevy project

Example Usage

use bevy::prelude::*;
use bevy_fly_cam::FlyCamPlugin;

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