faster rotation stabilizer

This commit is contained in:
yuni 2024-05-01 04:02:04 +02:00
parent 66920f44e9
commit b00c583d4d

View file

@ -499,7 +499,7 @@ pub fn apply_input_to_player(
}
let angular_slowdown: f64 = if settings.rotation_stabilizer_active {
(2.0 - engine.reaction_wheels.powf(0.01).clamp(1.001, 1.1)) as f64
(2.0 - engine.reaction_wheels.powf(0.05).clamp(1.001, 1.1)) as f64
} else {
1.0
};