Browse Source

Updated examples screenshots

pull/135/head
raysan5 8 years ago
parent
commit
f1f51bd9b6
11 changed files with 12 additions and 2 deletions
  1. BIN
      examples/core_2d_camera.png
  2. BIN
      examples/core_3d_camera_first_person.png
  3. BIN
      examples/core_3d_camera_free.png
  4. +12
    -2
      examples/core_3d_picking.c
  5. BIN
      examples/core_3d_picking.png
  6. BIN
      examples/core_input_mouse.png
  7. BIN
      examples/core_oculus_rift.png
  8. BIN
      examples/core_world_screen.png
  9. BIN
      examples/shaders_custom_uniform.png
  10. BIN
      examples/shaders_postprocessing.png
  11. BIN
      examples/shaders_standard_lighting.png

BIN
examples/core_2d_camera.png View File

Before After
Width: 800  |  Height: 450  |  Size: 21 KiB

BIN
examples/core_3d_camera_first_person.png View File

Before After
Width: 800  |  Height: 450  |  Size: 18 KiB Width: 800  |  Height: 450  |  Size: 17 KiB

BIN
examples/core_3d_camera_free.png View File

Before After
Width: 800  |  Height: 450  |  Size: 25 KiB Width: 800  |  Height: 450  |  Size: 25 KiB

+ 12
- 2
examples/core_3d_picking.c View File

@ -68,8 +68,18 @@ int main()
Begin3dMode(camera);
DrawCube(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, GRAY);
DrawCubeWires(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, DARKGRAY);
if (collision)
{
DrawCube(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, RED);
DrawCubeWires(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, MAROON);
DrawCubeWires(cubePosition, cubeSize.x + 0.2f, cubeSize.y + 0.2f, cubeSize.z + 0.2f, GREEN);
}
else
{
DrawCube(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, GRAY);
DrawCubeWires(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, DARKGRAY);
}
DrawRay(ray, MAROON);

BIN
examples/core_3d_picking.png View File

Before After
Width: 800  |  Height: 450  |  Size: 24 KiB Width: 800  |  Height: 450  |  Size: 24 KiB

BIN
examples/core_input_mouse.png View File

Before After
Width: 800  |  Height: 450  |  Size: 10 KiB Width: 800  |  Height: 450  |  Size: 15 KiB

BIN
examples/core_oculus_rift.png View File

Before After
Width: 1080  |  Height: 600  |  Size: 151 KiB Width: 800  |  Height: 450  |  Size: 173 KiB

BIN
examples/core_world_screen.png View File

Before After
Width: 800  |  Height: 450  |  Size: 23 KiB

BIN
examples/shaders_custom_uniform.png View File

Before After
Width: 800  |  Height: 450  |  Size: 249 KiB Width: 800  |  Height: 450  |  Size: 252 KiB

BIN
examples/shaders_postprocessing.png View File

Before After
Width: 800  |  Height: 450  |  Size: 217 KiB Width: 800  |  Height: 450  |  Size: 232 KiB

BIN
examples/shaders_standard_lighting.png View File

Before After
Width: 800  |  Height: 450  |  Size: 246 KiB

Loading…
Cancel
Save