From bba6ae562238299f07b7f83f1278fc279eb21fd5 Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 10 Jan 2023 12:16:42 +0100 Subject: [PATCH] RENAME: type to projection #2851 --- src/rcamera.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rcamera.h b/src/rcamera.h index 92c3c49a9..1b77e19a9 100644 --- a/src/rcamera.h +++ b/src/rcamera.h @@ -73,7 +73,7 @@ Vector3 target; // Camera target it looks-at Vector3 up; // Camera up vector (rotation over its axis) float fovy; // Camera field-of-view apperture in Y (degrees) in perspective, used as near plane width in orthographic - int type; // Camera type, defines projection type: CAMERA_PERSPECTIVE or CAMERA_ORTHOGRAPHIC + int projection; // Camera type, defines projection type: CAMERA_PERSPECTIVE or CAMERA_ORTHOGRAPHIC } Camera3D; typedef Camera3D Camera; // Camera type fallback, defaults to Camera3D