First-person-controller plugin for the Bevy game-engine

Usage

Plugins initialization:

rust // Require the `bevy_rapier3d` plugin App::new() .add_plugin(RapierPhysicsPlugin::<NoUserData>::default()) .add_plugin(FpcPlugin::default())

Spawn and embody an fpc entity:

rust commands.spawn(FpcBundle::default()).insert(Player);

Custom configuration:

rust app.insert_resource(FpcConfiguration{ keyboard_linear_inputs: LINEAR_AZERTY_LAYOUT, ..Default::default() })

Try out the example by cloning this repo and running the following command:

rust // In this example, you can press the `Tab` key to switch the "angular state" cargo run --example basic Example map model by noyou, licensed under CC BY 4.0

Docs/Features

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be licensed as above, without any additional terms or conditions.