bevy_trackball

Coherent virtual trackball controller/camera plugin for Bevy

Build Documentation Downloads Version Rust License

Run simple and advanced [examples] in your browser using WASM and WebGL.

Coherence Features

This is an alternative trackball technique using exponential map and parallel transport to preserve distances and angles for inducing coherent and intuitive trackball rotations. For instance, displacements on straight radial lines through the screen’s center are carried to arcs of the same length on great circles of the trackball (e.g., dragging the mouse along an eights of the trackball's circumference rolls the camera by 360/8=45 degrees, dragging the mouse from the screen's center to its further edge linearly rotates the camera by 1 [radian], where the trackball's diameter is the maximum of the screen's width and height). This is in contrast to state-of-the-art techniques using orthogonal projection which distorts radial distances further away from the screen’s center (e.g., the rotation accelerates towards the edge).

Additional Features

See the release history to keep track of the development.

Input Mappings

Following mappings are the defaults which can be customized, see [TrackballInput].

Mouse (Buttons) | Touch (Fingers) | Keyboard | Operation ----------------------- | ----------------------- | -------- | --------------------------------- Left Press + Drag | One + Drag | ijkl | Orbits around target. ↳ at trackball's border | Two + Roll | uo | Rolls about view direction. Middle Press + Drag | Any + Drag + Left Shift | ↑←↓→ | First person view. Right Press + Drag | Two + Drag | esdf | Slides trackball on focus plane.   |   | gv | Slides trackball in/out. Scroll In/Out | Two + Pinch Out/In | hn | Scales distance zooming in/out. Left Press + Release | Any + Release |   | Slides to cursor/finger position.   |   | p | Toggle orthographic/perspective.   |   | Return | Reset camera transform.

Usage

Add the [TrackballPlugin] followed by spawning a [TrackballController] together with a [TrackballCamera] and a Camera3dBundle or see simple and advanced [examples].

```rust use bevy::prelude::; use bevy_trackball::prelude::;

// Add the trackball plugin. fn main() { App::new() .addplugins(DefaultPlugins) .addplugins(TrackballPlugin) .add_systems(Startup, setup) .run(); }

// Add a trackball controller and trackball camera to a camera 3D bundle. fn setup(mut commands: Commands) { let [target, eye, up] = [Vec3::ZERO, Vec3::Z * 10.0, Vec3::Y]; commands.spawn(( TrackballController::default(), TrackballCamera::look_at(target, eye, up), Camera3dBundle::default(), ));

// Set up your scene...

} ```

License

Copyright © 2023 Rouven Spreckels rs@qu1x.dev

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.