From 20e68ab39ee8eda9789b703d79ac12ae159c17d1 Mon Sep 17 00:00:00 2001 From: extrawurst Date: Tue, 11 Mar 2025 22:25:30 +0100 Subject: [PATCH] improve camera --- src/camera.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(),