slow acceleration

This commit is contained in:
Zynh Ludwig 2024-09-03 18:52:13 -07:00
parent 342597e086
commit 69ddd9c753

View file

@ -135,6 +135,7 @@ fn accelerate(
vel.0 += coh.0 * time.delta_seconds(); vel.0 += coh.0 * time.delta_seconds();
vel.0 += ali.0 * time.delta_seconds(); vel.0 += ali.0 * time.delta_seconds();
vel.0 *= 1.005;
vel.0 = vel.0.clamp_length_max(200.); vel.0 = vel.0.clamp_length_max(200.);
sep.0 *= 0.; sep.0 *= 0.;