aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/web/models_heightmap.c
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2017-04-01 00:51:31 +0200
committerRay <raysan5@gmail.com>2017-04-01 00:51:31 +0200
commite6ed85e993b049a28dcc3c37bd5fadc6ab159df7 (patch)
treec0baef923b5c60128e7fc76d50eb85982e1ba725 /docs/examples/web/models_heightmap.c
parent0a33fbf8bb3b774cdd78a0c2f4373436e0edb600 (diff)
downloadraylib-e6ed85e993b049a28dcc3c37bd5fadc6ab159df7.tar.gz
raylib-e6ed85e993b049a28dcc3c37bd5fadc6ab159df7.zip
Update web examples -WORK IN PROGRESS-
Diffstat (limited to 'docs/examples/web/models_heightmap.c')
-rw-r--r--docs/examples/web/models_heightmap.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/examples/web/models_heightmap.c b/docs/examples/web/models_heightmap.c
index 09c3dcc9..bc514538 100644
--- a/docs/examples/web/models_heightmap.c
+++ b/docs/examples/web/models_heightmap.c
@@ -48,10 +48,9 @@ int main()
map = LoadHeightmap(image, (Vector3){ 16, 8, 16 }); // Load heightmap model with defined size
map.material.texDiffuse = texture; // Set map diffuse texture
- UnloadImage(image); // Unload heightmap image from RAM, already uploaded to VRAM
+ UnloadImage(image); // Unload heightmap image from RAM, already uploaded to VRAM
- SetCameraMode(CAMERA_ORBITAL); // Set an orbital camera mode
- SetCameraPosition(camera.position); // Set internal camera position to match our custom camera position
+ SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
#if defined(PLATFORM_WEB)
emscripten_set_main_loop(UpdateDrawFrame, 0, 1);