From 00079fa1f73ef55054b177a8beb8106e98f5f4da Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Wed, 9 Dec 2015 14:44:54 +0100 Subject: [PATCH] don't fix collisions in RK4 substeps still close enough and no as much of a waste well, it's still much of a waste, but at least now it's a little less --- src/world/world.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/world/world.cpp b/src/world/world.cpp index d933dc4..7efcddd 100644 --- a/src/world/world.cpp +++ b/src/world/world.cpp @@ -179,7 +179,6 @@ EntityDerivative Entity::CalculateStep( next.pos.block += delta.position * dt; next.velocity += delta.velocity * dt; limit(next.velocity, max_vel); - world.ResolveWorldCollision(*this, next); next.AdjustPosition(); EntityDerivative out; -- 2.39.2