RENAMED: camera.type -> camera.projection

This commit is contained in:
Ray 2021-03-19 20:14:14 +01:00
parent 9909068714
commit be8d5a7ae2
7 changed files with 7 additions and 7 deletions

View file

@ -54,7 +54,7 @@ int main(void)
camera.target = (Vector3){ 0.0f, 0.5f, 0.0f }; // Camera looking at point
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target)
camera.fovy = 45.0f; // Camera field-of-view Y
camera.type = CAMERA_PERSPECTIVE; // Camera mode type
camera.projection = CAMERA_PERSPECTIVE; // Camera mode type
// Load models
Model modelA = LoadModelFromMesh(GenMeshTorus(0.4f, 1.0f, 16, 32));