diff options
| author | Tomas Fabrizio Orsi <[email protected]> | 2024-04-28 17:39:28 -0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-28 22:39:28 +0200 |
| commit | 80d318461f297c039e3edb5da80a7beee67fc979 (patch) | |
| tree | fcbc83b78c15327c1e65cdd7b6ec76367e2453bb /src/raylib.h | |
| parent | f78721991f735a11b2d47faa014748f0f19d0883 (diff) | |
| download | raylib-80d318461f297c039e3edb5da80a7beee67fc979.tar.gz raylib-80d318461f297c039e3edb5da80a7beee67fc979.zip | |
Made comments on raylib.h match those present in rcamera.h (#3942)
Signed-off-by: Tomas Fabrizio Orsi <[email protected]>
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/raylib.h b/src/raylib.h index b9463228..2fa60a05 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 |
