added movement
All checks were successful
Verify build / verify_build (push) Successful in 57s

This commit is contained in:
k
2025-05-28 06:05:52 -04:00
parent b693f6809b
commit a75360a8ef
3 changed files with 74 additions and 5 deletions

View File

@@ -7,7 +7,10 @@ public:
Camera(glm::vec3 pos, float yaw, float pitch, float fov, float aspect);
~Camera();
void setPos(glm::vec3 pos);
void addPos(glm::vec3 pos);
void addFPos(glm::vec3 pos);
void setRotate(float yaw, float pitch);
void addRotate(float yaw, float pitch);
glm::mat4 getView();
glm::mat4 getProjection();
float aspect;