diff --git a/src/voxel_engine.cpp b/src/voxel_engine.cpp index 74b8a0e5..a5de8ece 100644 --- a/src/voxel_engine.cpp +++ b/src/voxel_engine.cpp @@ -86,9 +86,6 @@ void update_controls(PhysicsSolver* physics, Player* player, float delta){ - if (Events::jpressed(GLFW_KEY_ESCAPE)){ - Window::setShouldClose(true); - } if (Events::jpressed(GLFW_KEY_TAB)){ Events::toogleCursor(); } @@ -306,6 +303,10 @@ int main() { delta = currentTime - lastTime; lastTime = currentTime; + if (Events::jpressed(GLFW_KEY_ESCAPE)){ + Window::setShouldClose(true); + } + if (Events::jpressed(GLFW_KEY_O)){ occlusion = !occlusion; }