aboutsummaryrefslogtreecommitdiffstats
path: root/src/physics.cpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-10-07 18:35:47 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-10-07 18:35:47 -0400
commit5f53889d4357d8dba6e726ed38358eca96dbeb47 (patch)
tree8d82a65d007f7bf69dcd650c95bc3ee1463a3002 /src/physics.cpp
parent1b63e00b6b08133f5ee37ed90043eee0f67942fd (diff)
Added ability to change rendering offsets and sizes
Diffstat (limited to 'src/physics.cpp')
-rw-r--r--src/physics.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/physics.cpp b/src/physics.cpp
index 1f70ecc..85b929c 100644
--- a/src/physics.cpp
+++ b/src/physics.cpp
@@ -41,10 +41,10 @@ void PhysicsSystem::update([[maybe_unused]]entityx::EntityManager& entities,
pos.x += (vel.x * dt/1000.0);
pos.y += (vel.y * dt/1000.0);
- // TODO make this intersect world instead of 0 y
+ // If the entity has physics
if (has_phys) {
- double fallPosition = currentWorld->getHeight(pos.x, pos.y, 0.0);
+ float fallPosition = currentWorld->getHeight(pos.x, pos.y, 0.0);
Physics *p = e.component<Physics>().get();
// TODO only make this occur when the entity has a hitbox