diff options
| author | raysan5 <raysan5@gmail.com> | 2016-09-26 19:15:44 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2016-09-26 19:15:44 +0200 |
| commit | 978c49472a1cdffa0bf12aba1638806c65e3f8ba (patch) | |
| tree | 53081835a4626e7a97948996a5bee4fcdcece4c1 /src/raylib.h | |
| parent | 753b549aa5c6a010fc4de8acc2f64afdfce69cee (diff) | |
| download | raylib-978c49472a1cdffa0bf12aba1638806c65e3f8ba.tar.gz raylib-978c49472a1cdffa0bf12aba1638806c65e3f8ba.zip | |
Working on camera system...
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/raylib.h b/src/raylib.h index 66260ca2..35319d6a 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -705,14 +705,14 @@ RLAPI float GetGesturePinchAngle(void); // Get gesture pin // Camera System Functions (Module: camera) //------------------------------------------------------------------------------------ RLAPI void SetCameraMode(Camera, int mode); // Set camera mode (multiple camera modes available) -RLAPI void UpdateCamera(Camera *camera); // Update camera (player position is ignored) +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 leftKey, int rightKey, - int upKey, int downKey); // Set camera move controls (1st person and 3rd person cameras) + int rightKey, int leftKey, + int upKey, int downKey); // Set camera move controls (1st person and 3rd person cameras) //------------------------------------------------------------------------------------ // Basic Shapes Drawing Functions (Module: shapes) |
