diff options
| author | Ray <[email protected]> | 2021-03-19 20:14:14 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2021-03-19 20:14:14 +0100 |
| commit | be8d5a7ae2e5f89e7a03060a852883556c56c405 (patch) | |
| tree | 13cdfca6a13c572cf0ae5d9cbecd43fb90b5af94 /examples/models/models_waving_cubes.c | |
| parent | 990906871435fa056d9002810c9f4a46076207bb (diff) | |
| download | raylib-be8d5a7ae2e5f89e7a03060a852883556c56c405.tar.gz raylib-be8d5a7ae2e5f89e7a03060a852883556c56c405.zip | |
RENAMED: camera.type -> camera.projection
Diffstat (limited to 'examples/models/models_waving_cubes.c')
| -rw-r--r-- | examples/models/models_waving_cubes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/models/models_waving_cubes.c b/examples/models/models_waving_cubes.c index 764dc5e7..2a3b142d 100644 --- a/examples/models/models_waving_cubes.c +++ b/examples/models/models_waving_cubes.c @@ -30,7 +30,7 @@ int main() camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; camera.fovy = 70.0f; - camera.type = CAMERA_PERSPECTIVE; + camera.projection = CAMERA_PERSPECTIVE; // Specify the amount of blocks in each direction const int numBlocks = 15; |
