summaryrefslogtreecommitdiffhomepage
path: root/examples/web/models/models_obj_loading.c
diff options
context:
space:
mode:
authorRay <[email protected]>2020-01-30 13:52:46 +0100
committerRay <[email protected]>2020-01-30 13:52:46 +0100
commit68675c6a606cd85b522bd4024d3ea519d0119568 (patch)
treea718002f263f824c59f78ea33a70ad856cd05cdb /examples/web/models/models_obj_loading.c
parenta80f304e208ae23571769344b5bae3e78eb48812 (diff)
downloadraylib.com-68675c6a606cd85b522bd4024d3ea519d0119568.tar.gz
raylib.com-68675c6a606cd85b522bd4024d3ea519d0119568.zip
Updated web examples to latest raylib
Diffstat (limited to 'examples/web/models/models_obj_loading.c')
-rw-r--r--examples/web/models/models_obj_loading.c112
1 files changed, 0 insertions, 112 deletions
diff --git a/examples/web/models/models_obj_loading.c b/examples/web/models/models_obj_loading.c
deleted file mode 100644
index c6e224c..0000000
--- a/examples/web/models/models_obj_loading.c
+++ /dev/null
@@ -1,112 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [models] example - Load and draw a 3d model (OBJ) (adapted for HTML5 platform)
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#if defined(PLATFORM_WEB)
- #include <emscripten/emscripten.h>
-#endif
-
-//----------------------------------------------------------------------------------
-// Global Variables Definition
-//----------------------------------------------------------------------------------
-const int screenWidth = 800;
-const int screenHeight = 450;
-
-// Define the camera to look into our 3d world
-Camera camera = { 0 };
-
-Model model = { 0 }; // Declare OBJ model
-Texture2D texture = { 0 }; // Declare model texture
-
-Vector3 position = { 0.0f, 0.0f, 0.0f }; // Define model position
-
-//----------------------------------------------------------------------------------
-// Module Functions Declaration
-//----------------------------------------------------------------------------------
-void UpdateDrawFrame(void); // Update and Draw one frame
-
-//----------------------------------------------------------------------------------
-// Program Main Entry Point
-//----------------------------------------------------------------------------------
-int main(void)
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- InitWindow(screenWidth, screenHeight, "raylib [models] example - obj model loading");
-
- camera.position = (Vector3){ 8.0f, 8.0f, 8.0f }; // Camera position
- camera.target = (Vector3){ 0.0f, 2.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
-
- model = LoadModel("resources/models/castle.obj"); // Load OBJ model
- texture = LoadTexture("resources/models/castle_diffuse.png"); // Load model texture
- model.materials[0].maps[MAP_DIFFUSE].texture = texture; // Set map diffuse texture
-
-#if defined(PLATFORM_WEB)
- emscripten_set_main_loop(UpdateDrawFrame, 0, 1);
-#else
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- UpdateDrawFrame();
- }
-#endif
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(texture); // Unload texture
- UnloadModel(model); // Unload model
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
-
-//----------------------------------------------------------------------------------
-// Module Functions Definition
-//----------------------------------------------------------------------------------
-void UpdateDrawFrame(void)
-{
- // Update
- //----------------------------------------------------------------------------------
- //...
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawModel(model, position, 0.2f, WHITE); // Draw 3d model with texture
-
- DrawGrid(10, 1.0f); // Draw a grid
-
- DrawGizmo(position); // Draw gizmo
-
- EndMode3D();
-
- DrawText("(c) Castle 3D model by Alberto Cano", screenWidth - 200, screenHeight - 20, 10, GRAY);
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
-} \ No newline at end of file