Crate bevy_trackball

source ·
Expand description

Coherent virtual trackball controller/camera plugin for Bevy

Run interactive examples in your browser using WebAssembly and WebGL.

NOTE: Not all features are enabled by default, see Optional Features.

§Camera Modes

Supports multiple camera modes:

  • Trackball mode rotates camera around target.
  • First-person mode rotates target around camera.
  • Spectator mode translates target and camera.

§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).

  • Coherent and intuitive orbiting via the exponential map, see the underlying trackball crate which follows the recipe given in the paper of Stantchev, G.. “Virtual Trackball Modeling and the Exponential Map.”. S2CID 44199608. See the exponential_map example.
  • Coherent first-person mode aka free look or mouse look with the world trackball centered at eye instead of target.
  • Coherent scaling by translating mouse wheel device units, see TrackballWheelUnit. Scales eye distance from current cursor position or centroid of finger positions projected onto focus plane.
  • Coherent linear/angular TrackballVelocity for sliding/orbiting or free look by time-based input (e.g., pressed key). By default, the linear velocity is deduced from the angular velocity (where target and eye positions define the world radius) which in turn is defined in units of vertical field of view per seconds and hence independent of the world unit scale.

§Additional Features

  • Time-free multi-touch gesture recognition for orbit, scale, slide, and focus (i.e., slide to cursor/finger position) operations.
  • Smoothing of movement implemented as fps-agnostic exponential easy-out.
  • Gimbal lock-free using quaternion instead of Euler angles.
  • Gliding clamp (experimental): The movement of a camera can be restricted to user-defined boundary conditions (e.g., to not orbit below the ground plane). When the movement is not orthogonal to a boundary plane, it is changed such that the camera glides along the boundary plane. Currently, only implemented for orbit and slide operations, see the gliding_clamp example.
  • Camera constellation: A camera is decoupled from its input controller and instead multiple cameras can be sensitive to zero or multiple selected controllers (e.g., a minimap controlled by the same controller of the main viewport).
  • Constellation clamp: Cameras sensitive to the same controller are referred to as a group and can be configured to clamp the movement for the whole group whenever a group member crosses a boundary condition (e.g., rigid and loose constellation clamp), see the constellation_clamp example.
  • Viewport stealing: This allows UI system (e.g., egui behind bevy_egui feature gate) to steal the viewport and hence capture the input instead, see the egui example.
  • Scale-preserving transitioning between orthographic and perspective projection mode.
  • Converting between scaling modes (i.e., fixed vertical or horizontal field of view or fixed unit per pixels). This defines whether the scene scales or the corresponding vertical or horizontal field of view adjusts whenever the height or width of the viewport is resized, see the scaling_modes example.
  • Object inspection mode scaling clip plane distances by measuring from target instead of eye. This benefits the precision of the depth map. Applicable, whenever the extend of the object to inspect is known and hence the near clip plane can safely be placed just in front of it.
  • f64-ready for large worlds (e.g., solar system scale) whenever Bevy is, see issue #1680.

§Optional Features

Following features are disabled unless their corresponding feature gate is enabled:

  • bevy_egui for automatic viewport stealing whenever egui wants focus.
  • serialize for serde support of various structures of this crate and its dependencies.
  • c11-orbit for testing the behaviorally identical C implementation of the exponential map.

§Roadmap

  • Implement gliding clamp for first-person mode and scale operation, see issue.
  • Support more camera modes out of the box by adding dedicated controllers for each mode, see issue.
  • Support gamepad inputs, see issue.

§Input Mappings

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

Mouse (Buttons)Touch (Fingers)KeyboardOperation
Left Press + DragOne + DragijklOrbits around target.
↳ at trackball’s borderTwo + RolluoRolls about view direction.
Middle Press + DragAny + Drag + Left Shift↑←↓→First-person mode.
Right Press + DragTwo + DragesdfSlides trackball on focus plane.
  gvSlides trackball in/out.
Scroll In/OutTwo + Pinch Out/InhnScales distance zooming in/out.
Left Press + ReleaseAny + Release Slides to cursor/finger position.
  mToggle esdf/wasd mapping.
  pToggle orthographic/perspective.
  EnterReset camera transform.

Alternatively, TrackballInput::map_wasd maps wasd/Space/ControlLeft to slide operations where ws slides in/out and Space/ControlLeft slides up/down (jump/crouch).

§Usage

Add the TrackballPlugin followed by spawning a TrackballController together with a TrackballCamera and a Camera3dBundle or try the interactive examples.

use bevy::prelude::*;
use bevy_trackball::prelude::*;

// Add the trackball plugin.
fn main() {
	App::new()
		.add_plugins(DefaultPlugins)
		.add_plugins(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...
}

Re-exports§

Modules§

  • Prelude to get started quickly.

Structs§

Enums§