diff options
Diffstat (limited to 'src/systems/playing.cpp')
-rw-r--r-- | src/systems/playing.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/systems/playing.cpp b/src/systems/playing.cpp index 6652099..83f65d6 100644 --- a/src/systems/playing.cpp +++ b/src/systems/playing.cpp | |||
@@ -5,6 +5,7 @@ | |||
5 | #include "components/playable.h" | 5 | #include "components/playable.h" |
6 | #include "components/controllable.h" | 6 | #include "components/controllable.h" |
7 | #include "components/orientable.h" | 7 | #include "components/orientable.h" |
8 | #include "components/ponderable.h" | ||
8 | #include "systems/mapping.h" | 9 | #include "systems/mapping.h" |
9 | #include "systems/pondering.h" | 10 | #include "systems/pondering.h" |
10 | #include "systems/orienting.h" | 11 | #include "systems/orienting.h" |
@@ -46,6 +47,10 @@ void PlayingSystem::initPlayer() | |||
46 | player, | 47 | player, |
47 | PonderableComponent::Type::freefalling); | 48 | PonderableComponent::Type::freefalling); |
48 | 49 | ||
50 | auto& ponderable = game_.getEntityManager(). | ||
51 | getComponent<PonderableComponent>(player); | ||
52 | ponderable.accel.x() = 720; | ||
53 | |||
49 | game_.getEntityManager().emplaceComponent<ControllableComponent>(player); | 54 | game_.getEntityManager().emplaceComponent<ControllableComponent>(player); |
50 | game_.getEntityManager().emplaceComponent<OrientableComponent>(player); | 55 | game_.getEntityManager().emplaceComponent<OrientableComponent>(player); |
51 | 56 | ||