From dc882c5fedacdec852c801b952566b155fa9ed0a Mon Sep 17 00:00:00 2001 From: kai-z99 Date: Wed, 7 Aug 2024 17:11:41 -0700 Subject: [PATCH] fovy --- examples/core/core_3d_camera_first_person.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/core/core_3d_camera_first_person.c b/examples/core/core_3d_camera_first_person.c index 7c2aa4e435c6..f2caeb95bcdf 100644 --- a/examples/core/core_3d_camera_first_person.c +++ b/examples/core/core_3d_camera_first_person.c @@ -65,28 +65,28 @@ int main(void) { cameraMode = CAMERA_FREE; camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Reset roll - camera.fovy = 60.0f; + //camera.fovy = 60.0f; } if (IsKeyPressed(KEY_TWO)) { cameraMode = CAMERA_FIRST_PERSON; camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Reset roll - camera.fovy = 60.0f; + //camera.fovy = 60.0f; } if (IsKeyPressed(KEY_THREE)) { cameraMode = CAMERA_THIRD_PERSON; camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Reset roll - camera.fovy = 60.0f; + //camera.fovy = 60.0f; } if (IsKeyPressed(KEY_FOUR)) { cameraMode = CAMERA_ORBITAL; camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Reset roll - camera.fovy = 60.0f; + //camera.fovy = 60.0f; } // Switch camera projection