summaryrefslogtreecommitdiffhomepage
path: root/examples/models
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2021-10-12 20:23:59 +0200
committerraysan5 <[email protected]>2021-10-12 20:23:59 +0200
commitd92531b81d7397fab8a86ad939fdd109b2ca71fb (patch)
treece5b938c854dae90109bf39ce45a5a0dfc60e10a /examples/models
parent670eab8b17780bb33a671fc3474fc23d8588475d (diff)
downloadraylib-d92531b81d7397fab8a86ad939fdd109b2ca71fb.tar.gz
raylib-d92531b81d7397fab8a86ad939fdd109b2ca71fb.zip
Rename examples for consistency
Diffstat (limited to 'examples/models')
-rw-r--r--examples/models/models_loading.c18
-rw-r--r--examples/models/models_loading_gltf.c (renamed from examples/models/models_gltf_model.c)0
-rw-r--r--examples/models/models_loading_gltf.png (renamed from examples/models/models_gltf_model.png)bin21286 -> 21286 bytes
-rw-r--r--examples/models/models_loading_vox.c (renamed from examples/models/models_magicavoxel_loading.c)0
4 files changed, 10 insertions, 8 deletions
diff --git a/examples/models/models_loading.c b/examples/models/models_loading.c
index 16f122ee..a688a8b8 100644
--- a/examples/models/models_loading.c
+++ b/examples/models/models_loading.c
@@ -4,17 +4,19 @@
*
* raylib supports multiple models file formats:
*
-* - OBJ > Text file, must include vertex position-texcoords-normals information,
-* if files references some .mtl materials file, it will be loaded (or try to)
-* - GLTF > Modern text/binary file format, includes lot of information and it could
-* also reference external files, raylib will try loading mesh and materials data
-* - IQM > Binary file format including mesh vertex data but also animation data,
-* raylib can load .iqm animations.
+* - OBJ > Text file format. Must include vertex position-texcoords-normals information,
+* if files references some .mtl materials file, it will be loaded (or try to).
+* - GLTF > Text/binary file format. Includes lot of information and it could
+* also reference external files, raylib will try loading mesh and materials data.
+* - IQM > Binary file format. Includes mesh vertex data but also animation data,
+* raylib can load .iqm animations.
+* - VOX > Binary file format. MagikaVoxel mesh format:
+* https://github.com/ephtracy/voxel-model/blob/master/MagicaVoxel-file-format-vox.txt
*
-* This example has been created using raylib 2.6 (www.raylib.com)
+* This example has been created using raylib 4.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
-* Copyright (c) 2014-2019 Ramon Santamaria (@raysan5)
+* Copyright (c) 2014-2021 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_gltf_model.c b/examples/models/models_loading_gltf.c
index 3f843c9d..3f843c9d 100644
--- a/examples/models/models_gltf_model.c
+++ b/examples/models/models_loading_gltf.c
diff --git a/examples/models/models_gltf_model.png b/examples/models/models_loading_gltf.png
index 654444b8..654444b8 100644
--- a/examples/models/models_gltf_model.png
+++ b/examples/models/models_loading_gltf.png
Binary files differ
diff --git a/examples/models/models_magicavoxel_loading.c b/examples/models/models_loading_vox.c
index fd268f07..fd268f07 100644
--- a/examples/models/models_magicavoxel_loading.c
+++ b/examples/models/models_loading_vox.c