From a4b48e83ccbb28831e3f188d0fe5c7c5a9598802 Mon Sep 17 00:00:00 2001 From: Tomas Fabrizio Orsi Date: Sun, 28 Apr 2024 17:01:15 -0300 Subject: [PATCH] Made comments on raylib.h match those present in rcamera.h Signed-off-by: Tomas Fabrizio Orsi --- src/raylib.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/raylib.h b/src/raylib.h index b9463228b..2fa60a058 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -913,11 +913,11 @@ typedef enum { // Camera system modes typedef enum { - CAMERA_CUSTOM = 0, // Custom camera - CAMERA_FREE, // Free camera - CAMERA_ORBITAL, // Orbital camera - CAMERA_FIRST_PERSON, // First person camera - CAMERA_THIRD_PERSON // Third person camera + CAMERA_CUSTOM = 0, // Camera custom, controlled by user (UpdateCamera() does nothing) + CAMERA_FREE, // Camera free mode + CAMERA_ORBITAL, // Camera orbital, around target, zoom supported + CAMERA_FIRST_PERSON, // Camera first person + CAMERA_THIRD_PERSON // Camera third person } CameraMode; // Camera projection