diff --git a/src/camera.rs b/src/camera.rs index dcd69b3..3df625e 100644 --- a/src/camera.rs +++ b/src/camera.rs @@ -8,11 +8,11 @@ impl GameCameraRig { .with(Position::new(Vec3::ZERO)) .with(Rotation::new(Quat::IDENTITY)) .with(Smooth::new_position(1.25).predictive(true)) - .with(Smooth::new_rotation(10.)) + .with(Smooth::new_rotation(0.5)) .with(Arm::new(arm)) .with( LookAt::new(Vec3::ZERO + Vec3::Y) - .tracking_smoothness(1.25) + .tracking_smoothness(0.2) .tracking_predictive(true), ) .build(),