A basic first-person fly camera for Bevy 0.4
There are a few notable differences from bevyflycamera...
Simply add to Cargo.toml
and then include the PlayerPlugin
:
rust
fn main() {
App::build()
.add_plugins(DefaultPlugins)
.add_plugin(PlayerPlugin)
.run();
}