use absolute pos

This commit is contained in:
Quaternions 2023-10-04 22:20:49 -07:00
parent 8a81a57036
commit e8cb4a6f70

View File

@ -173,8 +173,8 @@ impl PhysicsCamera {
a.y=a.y.clamp(-std::f64::consts::FRAC_PI_2, std::f64::consts::FRAC_PI_2); a.y=a.y.clamp(-std::f64::consts::FRAC_PI_2, std::f64::consts::FRAC_PI_2);
return a return a
} }
fn simulate_move_rotation_y(&self, delta_x: i32) -> glam::Mat3 { fn simulate_move_rotation_y(&self, mouse_pos_x: i32) -> glam::Mat3 {
mat3_from_rotation_y_f64(self.angles.x-self.sensitivity.x*(delta_x as f64)) mat3_from_rotation_y_f64(self.angles.x-self.sensitivity.x*((mouse_pos_x-self.mouse.pos.x) as f64))
} }
} }