diff --git a/README.md b/README.md index e21aeea..036f013 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Default controls: - Works with orthographic camera projection in addition to perspective - Customisable controls, sensitivity, and more - Works with multiple viewports and/or windows -- Easy to animate, e.g. to slowly rotate around an object +- Easy to control manually, e.g. for keyboard control or animation ## Quick Start diff --git a/examples/animate.rs b/examples/animate.rs index 0282ff3..548742e 100644 --- a/examples/animate.rs +++ b/examples/animate.rs @@ -45,8 +45,8 @@ fn setup( commands.spawn(( Camera3dBundle::default(), PanOrbitCamera { - // Optionally disable smoothing to have full control over the camera's position - // orbit_smoothness: 0.0, + // Disable smoothing, since the animation takes care of that + orbit_smoothness: 0.0, // Might want to disable the controls enabled: false, ..default() @@ -61,5 +61,8 @@ fn animate(time: Res