fix: camera cannot pan left or right

This commit is contained in:
2026-03-21 13:07:28 +08:00
parent 772d606bbe
commit e2f0e7ea66
6 changed files with 24 additions and 5 deletions

View File

@@ -14,8 +14,8 @@ class Player {
private:
constexpr static float ACCELERATION = 30.0f;
constexpr static float DECELERATION = 50.0f;
float m_yaw;
float m_pitch;
float m_yaw = 0.0f;
float m_pitch = 0.0f;
float m_sensitivity = 0.05f;