#camera-control #camera #bevy #orbit #gamedev #game-engine

bevy_panorbit_camera

A basic pan and orbit camera in Bevy

28 releases (16 breaking)

0.17.0 Mar 25, 2024
0.16.0 Feb 27, 2024
0.10.0 Dec 26, 2023
0.9.2 Nov 25, 2023
0.6.1 Jul 14, 2023

#36 in Game dev

Download history 312/week @ 2024-01-05 361/week @ 2024-01-12 262/week @ 2024-01-19 281/week @ 2024-01-26 266/week @ 2024-02-02 364/week @ 2024-02-09 879/week @ 2024-02-16 940/week @ 2024-02-23 826/week @ 2024-03-01 813/week @ 2024-03-08 436/week @ 2024-03-15 629/week @ 2024-03-22 888/week @ 2024-03-29 652/week @ 2024-04-05 378/week @ 2024-04-12 241/week @ 2024-04-19

2,230 downloads per month
Used in 14 crates (12 directly)

MIT/Apache

55KB
845 lines

Crates.io docs.rs Bevy tracking

Bevy Pan/Orbit Camera

A screen recording showing camera movement

Summary

Bevy Pan/Orbit Camera provides orbit camera controls for Bevy Engine, designed with simplicity and flexibility in mind. Use it to quickly prototype, experiment, for model viewers, and more!

Features:

  • Smoothed orbiting, panning, and zooming
  • Works with orthographic camera projection in addition to perspective
  • Customisable controls, sensitivity, and more
  • Touch support
  • Works with multiple viewports and/or windows
  • Easy to control manually, e.g. for keyboard control or animation
  • Can control cameras that render to a texture

Controls

Default mouse controls:

  • Left Mouse - Orbit
  • Right Mouse - Pan
  • Scroll Wheel - Zoom

Default touch controls:

  • One finger - Orbit
  • Two fingers - Pan
  • Pinch - Zoom

Quick Start

Add the plugin:

.add_plugins(PanOrbitCameraPlugin)

Add PanOrbitCamera to a camera:

commands.spawn((
    Camera3dBundle {
        transform: Transform::from_translation(Vec3::new(0.0, 1.5, 5.0)),
        ..default()
    },
    PanOrbitCamera::default(),
));

This will set up a camera with good defaults.

Check out the advanced example to see all the possible configuration options.

Cargo Features

  • bevy_egui (optional): Makes PanOrbitCamera ignore any input that egui uses, thus preventing moving the camera when interacting with egui windows

Version Compatibility

bevy bevy_panorbit_camera
0.13 0.14-0.17
0.12 0.9-0.13
0.11 0.6-0.8
0.10 0.1-0.5

Credits

License

All code in this repository is dual-licensed under either:

at your option. This means you can select the license you prefer! This dual-licensing approach is the de-facto standard in the Rust ecosystem and there are very good reasons to include both.

Dependencies

~38–77MB
~1M SLoC