blob: 4cee110fce27c2075483e388f9ac268fc90106fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <systems/physics.hpp>
#include <components/direction.hpp>
#include <components/physics.hpp>
void PhysicsSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
{
(void)ev;
en.each<Direction, Physics>([dt](entityx::Entity entity, Direction &direction, Physics &physics) {
(void)entity;
// TODO GET GRAVITY FROM WORLD
direction.y += physics.g * dt;
});
}
|