diff options
| author | victorfisac <[email protected]> | 2017-04-06 15:28:04 +0200 |
|---|---|---|
| committer | victorfisac <[email protected]> | 2017-04-06 15:28:04 +0200 |
| commit | 54f070a0f421798dca911b48223a67ae6dc51956 (patch) | |
| tree | 07eefb8740d05754dcd875f49ea193eee1c79555 /docs/examples/web/core_3d_picking.c | |
| parent | 256bc6e1dccfd021239dd0e5a66c377a402c3c59 (diff) | |
| parent | c47b04a2c673f3073e2cc5a47d5aa1bce029e93e (diff) | |
| download | raylib-54f070a0f421798dca911b48223a67ae6dc51956.tar.gz raylib-54f070a0f421798dca911b48223a67ae6dc51956.zip | |
Merge remote-tracking branch 'refs/remotes/raysan5/develop' into develop
Diffstat (limited to 'docs/examples/web/core_3d_picking.c')
| -rw-r--r-- | docs/examples/web/core_3d_picking.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/web/core_3d_picking.c b/docs/examples/web/core_3d_picking.c index 6b18671e..2934c3fd 100644 --- a/docs/examples/web/core_3d_picking.c +++ b/docs/examples/web/core_3d_picking.c @@ -45,7 +45,7 @@ int main() //-------------------------------------------------------------------------------------- InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d picking"); - camera.position = (Vector3){ 0.0f, 10.0f, 10.0f }; // Camera position + camera.position = (Vector3){ 10.0f, 10.0f, 10.0f }; // Camera position camera.target = (Vector3){ 0.0f, 0.0f, 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 |
