diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-11-30 17:54:13 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-11-30 17:54:13 -0500 |
commit | 1024fe8305e5b0a7bb1f660a1cee077172d84534 (patch) | |
tree | 3153bc45fe98809c3d7e81f14710c0a0c6e0a6a2 /main.cpp | |
parent | 8c80ad1431512979e364e540a239e806851e4ada (diff) |
quest system
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -259,7 +259,8 @@ void render() { const auto SCREEN_HEIGHT = game::SCREEN_HEIGHT; auto ps = game::engine.getSystem<PlayerSystem>(); - offset.x = ps->getPosition().x + ps->getWidth() / 2; + auto ploc = ps->getPosition(); + offset.x = ploc.x + ps->getWidth() / 2; const auto& worldWidth = game::engine.getSystem<WorldSystem>()->getWidth(); if (worldWidth < (int)SCREEN_WIDTH) @@ -270,7 +271,7 @@ void render() { offset.x = ((worldWidth * 0.5f) - SCREEN_WIDTH / 2); // ortho y snapping - offset.y = /*std::max(player->loc.y + player->height / 2,*/ SCREEN_HEIGHT / 2.0f; /*);*/ + offset.y = std::max(ploc.y /*+ player->height / 2*/, SCREEN_HEIGHT / 2.0f); // "setup" glm::mat4 projection = glm::ortho(floor(offset.x - SCREEN_WIDTH / 2), // left |