Added initializer types.

This commit is contained in:
Бранимир Караџић
2021-09-06 09:03:26 -07:00
parent 9ab8494bdd
commit f1ddf67114
12 changed files with 105 additions and 119 deletions

View File

@@ -264,9 +264,9 @@ struct Camera
MouseCoords m_mouseNow;
MouseCoords m_mouseLast;
bx::Vec3 m_eye;
bx::Vec3 m_at;
bx::Vec3 m_up;
bx::Vec3 m_eye = bx::init::Zero;
bx::Vec3 m_at = bx::init::Zero;
bx::Vec3 m_up = bx::init::Zero;
float m_horizontalAngle;
float m_verticalAngle;