Browse Source

Update render/gl/camera.cpp

Co-authored-by: Copilot <[email protected]>
Adam Djellouli 2 months ago
parent
commit
b8d7726e21
1 changed files with 0 additions and 4 deletions
  1. 0 4
      render/gl/camera.cpp

+ 0 - 4
render/gl/camera.cpp

@@ -138,10 +138,6 @@ void Camera::orbit(float yawDeg, float pitchDeg) {
       qBound(m_pitchMinDeg, curPitch + pitchDeg, m_pitchMaxDeg);
   m_orbitTime = 0.0f;
   m_orbitPending = true;
-  qDebug() << "Camera::orbit start:" << "startYaw=" << m_orbitStartYaw
-           << "startPitch=" << m_orbitStartPitch
-           << "targetYaw=" << m_orbitTargetYaw
-           << "targetPitch=" << m_orbitTargetPitch;
 }
 
 void Camera::update(float dt) {