summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorBrian E <[email protected]>2024-01-28 12:49:07 +0000
committerGitHub <[email protected]>2024-01-28 13:49:07 +0100
commit812645b077dbd5579ee5e03d89a6a07f431bf3c6 (patch)
tree4d2b9865604aa4b896db4b08e5d7ff083f1e6041 /src
parentcf10cdd6b33718c066ae58f7973b04dabde6efb1 (diff)
downloadraylib-812645b077dbd5579ee5e03d89a6a07f431bf3c6.tar.gz
raylib-812645b077dbd5579ee5e03d89a6a07f431bf3c6.zip
cleaned away unused macros in rcamera.h (#3762)
Diffstat (limited to 'src')
-rw-r--r--src/rcamera.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/rcamera.h b/src/rcamera.h
index f2d902c2..b1805c37 100644
--- a/src/rcamera.h
+++ b/src/rcamera.h
@@ -202,18 +202,10 @@ RLAPI Matrix GetCameraProjectionMatrix(Camera* camera, float aspect);
// Camera mouse movement sensitivity
#define CAMERA_MOUSE_MOVE_SENSITIVITY 0.003f // TODO: it should be independant of framerate
-#define CAMERA_MOUSE_SCROLL_SENSITIVITY 1.5f
+// Camera orbital speed in CAMERA_ORBITAL mode
#define CAMERA_ORBITAL_SPEED 0.5f // Radians per second
-
-#define CAMERA_FIRST_PERSON_STEP_TRIGONOMETRIC_DIVIDER 8.0f
-#define CAMERA_FIRST_PERSON_STEP_DIVIDER 30.0f
-#define CAMERA_FIRST_PERSON_WAVING_DIVIDER 200.0f
-
-// PLAYER (used by camera)
-#define PLAYER_MOVEMENT_SENSITIVITY 20.0f
-
//----------------------------------------------------------------------------------
// Types and Structures Definition
//----------------------------------------------------------------------------------