thetawavegame / thetawave

A physics based, space shooter game made with Rust and the Bevy engine.
https://thetawave.metalmancy.tech
MIT License
161 stars 9 forks source link

Setup Rapier Physics to Use Fixed Update #145

Closed cdsupina closed 7 months ago

cdsupina commented 7 months ago

Rapier physics by default does not run on a fixed update schedule meaning that the physics simulation goes at the speed of the game. Fixed update will make sure that when the game slows down the physics simulation keeps up.

@LordDeatHunter This solves the issue with the projectile range you were describing.

cdsupina commented 7 months ago

solves #142