aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-06-23 15:47:37 +0100
committerGitHub <noreply@github.com>2025-06-23 15:47:37 +0100
commitbe3f8e3c9d03d686c64fbbab97b7950c2c325861 (patch)
tree85db2490cf5ff92923c8ad88ceba937de6930021
parent1633d9b69a38634b8f70a4bb16bb58e10c41f455 (diff)
parent92005ba1a6b0646dca0aae4552857077a5b51889 (diff)
Merge pull request #5397 from Feoramund/fix-4865
raylib: Refer to Odin-style enum over original C enum
-rw-r--r--vendor/raylib/raylib.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/raylib/raylib.odin b/vendor/raylib/raylib.odin
index 02bb6deea..bb8f0e894 100644
--- a/vendor/raylib/raylib.odin
+++ b/vendor/raylib/raylib.odin
@@ -274,7 +274,7 @@ Camera3D :: struct {
target: Vector3, // Camera target it looks-at
up: Vector3, // Camera up vector (rotation over its axis)
fovy: f32, // Camera field-of-view apperture in Y (degrees) in perspective, used as near plane width in orthographic
- projection: CameraProjection, // Camera projection: CAMERA_PERSPECTIVE or CAMERA_ORTHOGRAPHIC
+ projection: CameraProjection, // Camera projection: `.PERSPECTIVE` or `.ORTHOGRAPHIC`
}
Camera :: Camera3D // Camera type fallback, defaults to Camera3D