VideoCommon: Add 'Active' state to FreelookCamera to future proof if we ever add multiple cameras

This commit is contained in:
iwubcode
2020-06-18 23:49:07 -05:00
parent a37fd8c5d9
commit bcf63c463b
3 changed files with 10 additions and 2 deletions

View File

@ -66,6 +66,8 @@ public:
void ResetSpeed();
float GetSpeed() const;
bool IsActive() const;
private:
bool m_dirty = false;
float m_fov_x = 1.0f;
@ -75,6 +77,7 @@ private:
float m_fov_step_size = 0.025f;
float m_speed = 1.0f;
bool m_enabled = true;
};
extern FreeLookCamera g_freelook_camera;