| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #include "./common.h"
- /* === Resources === */
- static Model plane = { 0 };
- static Model sphere = { 0 };
- static Camera3D camera = { 0 };
- /* === Examples === */
- const char* Init(void)
- {
- R3D_Init(GetScreenWidth(), GetScreenHeight(), 0);
- SetTargetFPS(60);
- plane = LoadModelFromMesh(GenMeshPlane(1000, 1000, 1, 1));
- plane.materials[0].maps[MATERIAL_MAP_OCCLUSION].value = 1;
- plane.materials[0].maps[MATERIAL_MAP_ROUGHNESS].value = 1;
- plane.materials[0].maps[MATERIAL_MAP_METALNESS].value = 0;
- sphere = LoadModelFromMesh(GenMeshSphere(0.5f, 64, 64));
- sphere.materials[0].maps[MATERIAL_MAP_OCCLUSION].value = 1;
- sphere.materials[0].maps[MATERIAL_MAP_ROUGHNESS].value = 0.25;
- sphere.materials[0].maps[MATERIAL_MAP_METALNESS].value = 0.75;
- camera = (Camera3D) {
- .position = (Vector3) { 0, 2, 2 },
- .target = (Vector3) { 0, 0, 0 },
- .up = (Vector3) { 0, 1, 0 },
- .fovy = 60,
- };
- R3D_Light light = R3D_CreateLight(R3D_LIGHT_SPOT);
- {
- R3D_SetLightPosition(light, (Vector3) { 0, 10, 5 });
- R3D_SetLightTarget(light, (Vector3) { 0 });
- R3D_SetLightActive(light, true);
- R3D_EnableShadow(light, 4096);
- }
- return "[r3d] - basic example";
- }
- void Update(float delta)
- {
- UpdateCamera(&camera, CAMERA_ORBITAL);
- }
- void Draw(void)
- {
- R3D_Begin(camera);
- R3D_DrawModel(plane, (Vector3) { 0, -0.5f, 0 }, 1.0f);
- R3D_DrawModel(sphere, (Vector3) { 0 }, 1.0f);
- R3D_End();
- }
- void Close(void)
- {
- UnloadModel(plane);
- UnloadModel(sphere);
- R3D_Close();
- }
|