Merge pull request #82 from teamfisk/BoxModelCollision

Small fixes to collision/trigger-boxes, etc.
This commit is contained in:
2016-02-10 10:08:54 +01:00
12 changed files with 74 additions and 51 deletions
+1 -1
View File
@@ -95,7 +95,7 @@ void PlayerMovementSystem::Update(double dt)
} else {
controller->SetDoubleJumping(true);
}
velocity.y += 4.f;
velocity.y = 4.f;
}
if (player.HasComponent("AABB")) {