summaryrefslogtreecommitdiffhomepage
path: root/examples/core/core_world_screen.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/core/core_world_screen.c')
-rw-r--r--examples/core/core_world_screen.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/core/core_world_screen.c b/examples/core/core_world_screen.c
index f8c53c70..78ca6eb4 100644
--- a/examples/core/core_world_screen.c
+++ b/examples/core/core_world_screen.c
@@ -21,7 +21,12 @@ int main()
InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d camera free");
// Define the camera to look into our 3d world
- Camera camera = {{ 10.0f, 10.0f, 10.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f };
+ Camera camera = { 0 };
+ camera.position = (Vector3){ 10.0f, 10.0f, 10.0f };
+ camera.target = (Vector3){ 0.0f, 0.0f, 0.0f };
+ camera.up = (Vector3){ 0.0f, 1.0f, 0.0f };
+ camera.fovy = 45.0f;
+ camera.type = CAMERA_PERSPECTIVE;
Vector3 cubePosition = { 0.0f, 0.0f, 0.0f };