Add camera reset functionality (R key) and fix build#110
Add camera reset functionality (R key) and fix build#110TECHNICANGEL merged 2 commits intomasterfrom
Conversation
- Fix: Remove redundant declaration of `currentFPS` and `frameTimeMs` in `src/main.cpp` that caused compilation errors. - Feature: Add `reset()` method to `Camera` class to restore initial position and orientation. - UX: Bind 'R' key to camera reset in `src/main.cpp`. - UX: Provide immediate feedback via window title update and log message on reset. Co-authored-by: TECHNICANGEL <197574689+TECHNICANGEL@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
This PR implements a "Reset Camera" feature (requested as a micro-UX improvement).
Changes:
currentFPSandframeTimeMsinsrc/main.cppwhich were preventing the project from building.initialPosition,initialYaw,initialPitch, andinitialFovmembers toCamera.hand initialized them in the constructor. Added areset()method to restore these values.keyCallbackinsrc/main.cppto listen for the 'R' key.This change allows users to easily recover from disorientation while navigating the 3D scene.
PR created automatically by Jules for task 5182742576547245750 started by @TECHNICANGEL