]> git.localhorst.tv Git - blank.git/commitdiff
don't fix collisions in RK4 substeps
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Wed, 9 Dec 2015 13:44:54 +0000 (14:44 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Wed, 9 Dec 2015 13:44:54 +0000 (14:44 +0100)
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

index d933dc4ec77f86d913d2cd66de5ced6e4a19d65f..7efcddd00da9972704b09a014658d405b22f9ca7 100644 (file)
@@ -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;