Fixes to ghosts

This commit is contained in:
2023-10-13 22:29:08 -04:00
parent 1581065661
commit f7bf70f4c5
2 changed files with 4 additions and 2 deletions

View File

@@ -6,9 +6,9 @@
Player::Player(glm::vec3 startpos, float startyaw) {
position = startpos;
yaw = 45.0f + startyaw;
yaw = startyaw;
pitch = 45.0f;
pitch = 0.0f;
first_mouse = false;
first_frame = false;
light_xpersist = 0.0f;