A spectator camera plugin for the Bevy game engine.
| Action | Key |
|-------------------|---------------|
| Forward | W
|
| Left | A
|
| Backward | S
|
| Right | D
|
| Up | Space
|
| Down | ControlLeft
|
| Alternative Speed | ShiftLeft
|
| Release Cursor | Escape
|
Movement is constrained to the appropriate axes. (WASD
to X & Z axes, Space
& ShiftLeft
to the Y axis)
```rust use bevy::prelude::; use bevy_spectator::;
fn main() { App::new() .addplugins((MinimalPlugins, SpectatorPlugin)) .addsystems(Startup, setup); }
fn setup(mut commands: Commands) { commands.spawn(( Camera3dBundle::default(), Spectator )); } ```
| bevy | bevy_spectator | |------|----------------| | 0.11 | 0.3 | | 0.10 | 0.2 | | 0.9 | 0.1 |