diff options
| author | Ray <[email protected]> | 2021-03-19 13:56:46 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2021-03-19 13:56:46 +0100 |
| commit | 07d82a91c5e710bae05525b7a053893ff3771767 (patch) | |
| tree | e9d5d2ba4a4ceb7de35a7853c38508eff413a4bd /src/raylib.h | |
| parent | d4e2c331b1a751dd02cac36502bbb161406b0d80 (diff) | |
| download | raylib-07d82a91c5e710bae05525b7a053893ff3771767.tar.gz raylib-07d82a91c5e710bae05525b7a053893ff3771767.zip | |
WARNING: BREAKING: RENAMED: camera.type to camera.projection
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index 3efaf039..ae1b494e 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -293,7 +293,7 @@ typedef struct Camera3D { 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 projection: CAMERA_PERSPECTIVE or CAMERA_ORTHOGRAPHIC + int projection; // Camera projection: CAMERA_PERSPECTIVE or CAMERA_ORTHOGRAPHIC } Camera3D; typedef Camera3D Camera; // Camera type fallback, defaults to Camera3D |
