Provides smooth interpolation for movement without sacrificing camera's translation.
Includes an optional HUD overlay to display important information like FOV and FPS.
Automatically grabs cursor when MMB/RMB is held.
Allows complete control over movement via LShift prefixed controls.
Install the crate using cargo
bash
cargo add bevy_prank
Add PrankPlugin
to your app
```rust use bevy::prelude::; use bevy_prank::prelude::;
fn main() { App::new() // ... .add_plugins((DefaultPlugins, PrankPlugin::default())) // ... .run(); } ```
Spawn a Camera3dBundle
along with a Prank3d
component
```rust use bevy::prelude::; use bevy_prank::prelude::;
fn setup(mut commands: Commands) { commands.spawn(( Prank3d::default(), Camera3dBundle::default(), )); } ```
For further information see examples.
| Control | Action |
| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
| MMB + Drag | Offsets the camera on its local x
(left/right) and y
(top/bottom) axes |
| RMB + Drag | Rotates the camera |
| RMB + Scroll | Adjusts movement speed |
| RMB + W A S D | Moves the camera on its local x
(left/right) and z
(front/back) axes |
| RMB + E Q | Moves the camera on the y
(top/bottom) axis |
| RMB + LShift + W A S D E Q | Moves the camera on the x
(left/right), y
(top/bottom) axes, and z
(front/back) axes |