diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-07 20:03:14 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-07 20:03:14 +0100 |
commit | 3d2428af8e8d9d49b4ade52d4806a7dae4cf1ab8 (patch) | |
tree | 30d908c427ff9b4ee53402fbf52cb15704e58623 /src/crepe/system | |
parent | fde229c24dcbd1ed844880a35eabddb88279802b (diff) |
merge #25 + nitpicking
Diffstat (limited to 'src/crepe/system')
-rw-r--r-- | src/crepe/system/PhysicsSystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/system/PhysicsSystem.cpp b/src/crepe/system/PhysicsSystem.cpp index 1bd2171..eb54ad3 100644 --- a/src/crepe/system/PhysicsSystem.cpp +++ b/src/crepe/system/PhysicsSystem.cpp @@ -20,7 +20,7 @@ void PhysicsSystem::update() { double gravity = Config::get_instance().physics.gravity; for (Rigidbody & rigidbody : rigidbodies) { if (!rigidbody.active) continue; - + switch (rigidbody.data.body_type) { case Rigidbody::BodyType::DYNAMIC: for (Transform & transform : transforms) { |