diff options
| author | Ray <[email protected]> | 2020-12-19 20:14:34 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2020-12-19 20:14:34 +0100 |
| commit | d82113ec34a39b91a9eb4c642f2b79fb36d4f220 (patch) | |
| tree | 110fc4b00dc897dfad977052fef33bbedf932c23 /src/raylib.h | |
| parent | 9097d0b4ef135461867db2889669125da63f9c57 (diff) | |
| download | raylib-d82113ec34a39b91a9eb4c642f2b79fb36d4f220.tar.gz raylib-d82113ec34a39b91a9eb4c642f2b79fb36d4f220.zip | |
Camera funcs, review params names
Just for a better consistency
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/raylib.h b/src/raylib.h index 7f1371f4..928a197a 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1074,10 +1074,10 @@ RLAPI float GetGesturePinchAngle(void); // Get gesture pin RLAPI void SetCameraMode(Camera camera, int mode); // Set camera mode (multiple camera modes available) RLAPI void UpdateCamera(Camera *camera); // Update camera position for selected mode -RLAPI void SetCameraPanControl(int panKey); // Set camera pan key to combine with mouse movement (free camera) -RLAPI void SetCameraAltControl(int altKey); // Set camera alt key to combine with mouse movement (free camera) -RLAPI void SetCameraSmoothZoomControl(int szKey); // Set camera smooth zoom key to combine with mouse (free camera) -RLAPI void SetCameraMoveControls(int frontKey, int backKey, int rightKey, int leftKey, int upKey, int downKey); // Set camera move controls (1st person and 3rd person cameras) +RLAPI void SetCameraPanControl(int keyPan); // Set camera pan key to combine with mouse movement (free camera) +RLAPI void SetCameraAltControl(int keyAlt); // Set camera alt key to combine with mouse movement (free camera) +RLAPI void SetCameraSmoothZoomControl(int keySmoothZoom); // Set camera smooth zoom key to combine with mouse (free camera) +RLAPI void SetCameraMoveControls(int keyFront, int keyBack, int keyRight, int keyLeft, int keyUp, int keyDown); // Set camera move controls (1st person and 3rd person cameras) //------------------------------------------------------------------------------------ // Basic Shapes Drawing Functions (Module: shapes) |
