diff options
| author | raysan5 <[email protected]> | 2016-10-10 19:43:27 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2016-10-10 19:43:27 +0200 |
| commit | 648676f46b01327f0fbd6f017292a3159ea9ab2f (patch) | |
| tree | 0abbf24e6c394472cad3290ef10f3b8d5bf8f87a /examples/core_world_screen.c | |
| parent | 5fecf5c088122dc409bd209b08627e671cbdc175 (diff) | |
| download | raylib-648676f46b01327f0fbd6f017292a3159ea9ab2f.tar.gz raylib-648676f46b01327f0fbd6f017292a3159ea9ab2f.zip | |
Update examples to new camera system
Diffstat (limited to 'examples/core_world_screen.c')
| -rw-r--r-- | examples/core_world_screen.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/examples/core_world_screen.c b/examples/core_world_screen.c index aa9505e8..f8c53c70 100644 --- a/examples/core_world_screen.c +++ b/examples/core_world_screen.c @@ -21,16 +21,13 @@ int main() InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d camera free"); // Define the camera to look into our 3d world - Camera camera = {{ 0.0f, 10.0f, 10.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f }; + Camera camera = {{ 10.0f, 10.0f, 10.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f }; Vector3 cubePosition = { 0.0f, 0.0f, 0.0f }; Vector2 cubeScreenPosition; - SetCameraMode(CAMERA_FREE); // Set a free camera mode - SetCameraPosition(camera.position); // Set internal camera position to match our camera position - SetCameraTarget(camera.target); // Set internal camera target to match our camera target - SetCameraFovy(camera.fovy); // Set internal camera field-of-view Y + SetCameraMode(camera, CAMERA_FREE); // Set a free camera mode SetTargetFPS(60); // Set our game to run at 60 frames-per-second //-------------------------------------------------------------------------------------- @@ -40,7 +37,7 @@ int main() { // Update //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update internal camera and our camera + UpdateCamera(&camera); // Update camera // Calculate cube screen space position (with a little offset to be in top) cubeScreenPosition = GetWorldToScreen((Vector3){cubePosition.x, cubePosition.y + 2.5f, cubePosition.z}, camera); |
