Skip to content
Snippets Groups Projects
Commit 787511f8 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Added zooming to mouse cursor (odd behaviour via remote desktop)

parent 3b3d9f93
No related branches found
No related tags found
No related merge requests found
......@@ -139,6 +139,13 @@ int main(int argc, char** argv) {
#ifndef NDEBUG
std::cout << "Zooming" << std::endl;
#endif
//calculate position of mouse cursor in real world
glm::vec2 m_real_world = camera.GetWorldXyFromMouse(InputState::mpos_x, InputState::mpos_y);
//move camera to position pointed to by cursor
camera.MoveTo(m_real_world);
//move mouse to screen center (doesn't visually work in remote desktop)
SDL_WarpMouseInWindow(infra.window(), WIDTH/2, HEIGHT/2);
//process zoom (keep only this for central zoom)
camera.ProcessMouseZoom(InputState::mwheelmot_y);
}
SelectionManager::hoveredIndex = bottom_metal.selectObject(InputState::umpos_x, HEIGHT - InputState::umpos_y, projection, view, model);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment