diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-20 09:23:52 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-20 09:23:52 -0400 |
commit | 7a4bc1d9e6b73471cb2e20d2ab0611a507979f30 (patch) | |
tree | 853f3b7e367259338b402aef6e1892f27ec04309 /main.cpp | |
parent | a7ec2350f406195b119e24a81c95649c3645a26b (diff) |
ortho follows cat, bobshouse can be opened
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -266,11 +266,14 @@ void render() { const auto SCREEN_WIDTH = game::SCREEN_WIDTH; const auto SCREEN_HEIGHT = game::SCREEN_HEIGHT; -// offset.x = player->loc.x + player->width / 2; + //offset.x = game::entities.Iterator.begin().component<Position>().x;// + player->width / 2; - auto worldWidth = game::engine.getSystem<WorldSystem>()->getWidth(); + game::entities.each<Position>([](entityx::Entity entity, Position &position) { + (void)entity; + offset.x = position.x; + }); - // ortho x snapping + auto worldWidth = game::engine.getSystem<WorldSystem>()->getWidth(); if (worldWidth < (int)SCREEN_WIDTH) offset.x = 0; else if (offset.x - SCREEN_WIDTH / 2 < worldWidth * -0.5f) |