summaryrefslogtreecommitdiffhomepage
path: root/examples/models
diff options
context:
space:
mode:
authorRay <[email protected]>2022-07-20 01:28:37 +0200
committerRay <[email protected]>2022-07-20 01:28:37 +0200
commit4a9391ae83757afd86b6f1cccae4335c611b5b41 (patch)
treee95a5c4151f033616e49ce3a72ec3dc7b37394ba /examples/models
parent4fced50fd17c12d11e8cd0a99a0f3531cc4daf43 (diff)
downloadraylib-4a9391ae83757afd86b6f1cccae4335c611b5b41.tar.gz
raylib-4a9391ae83757afd86b6f1cccae4335c611b5b41.zip
REVIEWED: examples descriptions
Diffstat (limited to 'examples/models')
-rw-r--r--examples/models/models_animation.c14
-rw-r--r--examples/models/models_billboard.c8
-rw-r--r--examples/models/models_box_collisions.c8
-rw-r--r--examples/models/models_cubicmap.c8
-rw-r--r--examples/models/models_first_person_maze.c8
-rw-r--r--examples/models/models_geometric_shapes.c8
-rw-r--r--examples/models/models_heightmap.c8
-rw-r--r--examples/models/models_loading.c10
-rw-r--r--examples/models/models_loading_gltf.c8
-rw-r--r--examples/models/models_loading_vox.c8
-rw-r--r--examples/models/models_mesh_generation.c8
-rw-r--r--examples/models/models_mesh_picking.c8
-rw-r--r--examples/models/models_orthographic_projection.c10
-rw-r--r--examples/models/models_rlgl_solar_system.c10
-rw-r--r--examples/models/models_skybox.c8
-rw-r--r--examples/models/models_waving_cubes.c8
-rw-r--r--examples/models/models_yaw_pitch_roll.c8
17 files changed, 90 insertions, 58 deletions
diff --git a/examples/models/models_animation.c b/examples/models/models_animation.c
index 8055d64f..161b2199 100644
--- a/examples/models/models_animation.c
+++ b/examples/models/models_animation.c
@@ -2,18 +2,20 @@
*
* raylib [models] example - Load 3d model with animations and play them
*
-* This example has been created using raylib 2.5 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 2.5, last time updated with raylib 3.5
*
* Example contributed by Culacant (@culacant) and reviewed by Ramon Santamaria (@raysan5)
*
-* Copyright (c) 2019 Culacant (@culacant) and Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2019-2022 Culacant (@culacant) and Ramon Santamaria (@raysan5)
*
********************************************************************************************
*
-* To export a model from blender, make sure it is not posed, the vertices need to be in the
-* same position as they would be in edit mode.
-* and that the scale of your models is set to 0. Scaling can be done from the export menu.
+* NOTE: To export a model from blender, make sure it is not posed, the vertices need to be
+* in the same position as they would be in edit mode and the scale of your models is
+* set to 0. Scaling can be done from the export menu.
*
********************************************************************************************/
diff --git a/examples/models/models_billboard.c b/examples/models/models_billboard.c
index 30c328f2..42da2b6d 100644
--- a/examples/models/models_billboard.c
+++ b/examples/models/models_billboard.c
@@ -2,10 +2,12 @@
*
* raylib [models] example - Drawing billboards
*
-* 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)
+* Example originally created with raylib 1.3, last time updated with raylib 3.5
*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2015-2022 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_box_collisions.c b/examples/models/models_box_collisions.c
index f451119a..db8eb1f2 100644
--- a/examples/models/models_box_collisions.c
+++ b/examples/models/models_box_collisions.c
@@ -2,10 +2,12 @@
*
* raylib [models] example - Detect basic 3d collisions (box vs sphere vs box)
*
-* 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)
+* Example originally created with raylib 1.3, last time updated with raylib 3.5
*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2015-2022 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_cubicmap.c b/examples/models/models_cubicmap.c
index 24c6dd7b..3630ad0d 100644
--- a/examples/models/models_cubicmap.c
+++ b/examples/models/models_cubicmap.c
@@ -2,10 +2,12 @@
*
* raylib [models] example - Cubicmap loading and drawing
*
-* This example has been created using raylib 1.8 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 1.8, last time updated with raylib 3.5
*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2015-2022 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_first_person_maze.c b/examples/models/models_first_person_maze.c
index e4689f59..3e5e7210 100644
--- a/examples/models/models_first_person_maze.c
+++ b/examples/models/models_first_person_maze.c
@@ -2,10 +2,12 @@
*
* raylib [models] example - first person maze
*
-* This example has been created using raylib 2.5 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 2.5, last time updated with raylib 3.5
*
-* Copyright (c) 2019 Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2019-2022 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_geometric_shapes.c b/examples/models/models_geometric_shapes.c
index 0ac61f2d..294c8825 100644
--- a/examples/models/models_geometric_shapes.c
+++ b/examples/models/models_geometric_shapes.c
@@ -2,10 +2,12 @@
*
* raylib [models] example - Draw some basic geometric shapes (cube, sphere, cylinder...)
*
-* This example has been created using raylib 1.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 1.0, last time updated with raylib 3.5
*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2014-2022 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_heightmap.c b/examples/models/models_heightmap.c
index 2a365c71..b1330884 100644
--- a/examples/models/models_heightmap.c
+++ b/examples/models/models_heightmap.c
@@ -2,10 +2,12 @@
*
* raylib [models] example - Heightmap loading and drawing
*
-* This example has been created using raylib 1.8 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 1.8, last time updated with raylib 3.5
*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2015-2022 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_loading.c b/examples/models/models_loading.c
index c691b7c5..bb3b490f 100644
--- a/examples/models/models_loading.c
+++ b/examples/models/models_loading.c
@@ -2,7 +2,7 @@
*
* raylib [models] example - Models loading
*
-* raylib supports multiple models file formats:
+* NOTE: raylib supports multiple models file formats:
*
* - 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).
@@ -13,10 +13,12 @@
* - 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 4.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 2.0, last time updated with raylib 4.2
*
-* Copyright (c) 2014-2021 Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2014-2022 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_loading_gltf.c b/examples/models/models_loading_gltf.c
index 36400675..56b887b8 100644
--- a/examples/models/models_loading_gltf.c
+++ b/examples/models/models_loading_gltf.c
@@ -2,10 +2,12 @@
*
* raylib [models] example - loading gltf
*
-* This example has been created using raylib 4.2 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 3.7, last time updated with raylib 4.2
*
-* Copyright (c) 2022 Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2020-2022 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_loading_vox.c b/examples/models/models_loading_vox.c
index 6144a513..9dc3cf67 100644
--- a/examples/models/models_loading_vox.c
+++ b/examples/models/models_loading_vox.c
@@ -2,12 +2,14 @@
*
* raylib [models] example - Load models vox (MagicaVoxel)
*
-* 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)
+* Example originally created with raylib 4.0, last time updated with raylib 4.0
*
* Example contributed by Johann Nadalutti (@procfxgen) and reviewed by Ramon Santamaria (@raysan5)
*
-* Copyright (c) 2021 Johann Nadalutti (@procfxgen) and Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2021-2022 Johann Nadalutti (@procfxgen) and Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_mesh_generation.c b/examples/models/models_mesh_generation.c
index 2d9afcca..45b329c2 100644
--- a/examples/models/models_mesh_generation.c
+++ b/examples/models/models_mesh_generation.c
@@ -2,10 +2,12 @@
*
* raylib example - procedural mesh generation
*
-* This example has been created using raylib 1.8 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 1.8, last time updated with raylib 4.0
*
-* Copyright (c) 2017-2021 Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2017-2022 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_mesh_picking.c b/examples/models/models_mesh_picking.c
index 7cd51d98..c3ffd8e8 100644
--- a/examples/models/models_mesh_picking.c
+++ b/examples/models/models_mesh_picking.c
@@ -2,12 +2,14 @@
*
* raylib [models] example - Mesh picking in 3d mode, ground plane, triangle, mesh
*
-* This example has been created using raylib 1.7 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 1.7, last time updated with raylib 4.0
*
* Example contributed by Joel Davis (@joeld42) and reviewed by Ramon Santamaria (@raysan5)
*
-* Copyright (c) 2017 Joel Davis (@joeld42) and Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2017-2022 Joel Davis (@joeld42) and Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_orthographic_projection.c b/examples/models/models_orthographic_projection.c
index c38d1816..cfdeb859 100644
--- a/examples/models/models_orthographic_projection.c
+++ b/examples/models/models_orthographic_projection.c
@@ -2,14 +2,14 @@
*
* raylib [models] example - Show the difference between perspective and orthographic projection
*
-* This program is heavily based on the geometric objects example
-*
-* This example has been created using raylib 2.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 2.0, last time updated with raylib 3.7
*
* Example contributed by Max Danielsson (@autious) and reviewed by Ramon Santamaria (@raysan5)
*
-* Copyright (c) 2018 Max Danielsson (@autious) and Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2018-2022 Max Danielsson (@autious) and Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_rlgl_solar_system.c b/examples/models/models_rlgl_solar_system.c
index fffe55ea..a49b37d0 100644
--- a/examples/models/models_rlgl_solar_system.c
+++ b/examples/models/models_rlgl_solar_system.c
@@ -2,12 +2,14 @@
*
* raylib [models] example - rlgl module usage with push/pop matrix transformations
*
-* This example uses [rlgl] module funtionality (pseudo-OpenGL 1.1 style coding)
+* NOTE: This example uses [rlgl] module functionality (pseudo-OpenGL 1.1 style coding)
*
-* This example has been created using raylib 2.5 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 2.5, last time updated with raylib 4.0
*
-* Copyright (c) 2018 Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2018-2022 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_skybox.c b/examples/models/models_skybox.c
index 6567cf25..c18a2c3d 100644
--- a/examples/models/models_skybox.c
+++ b/examples/models/models_skybox.c
@@ -2,10 +2,12 @@
*
* raylib [models] example - Skybox loading and drawing
*
-* This example has been created using raylib 3.5 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 1.8, last time updated with raylib 4.0
*
-* Copyright (c) 2017-2020 Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2017-2022 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_waving_cubes.c b/examples/models/models_waving_cubes.c
index e21db102..f0737de3 100644
--- a/examples/models/models_waving_cubes.c
+++ b/examples/models/models_waving_cubes.c
@@ -2,12 +2,14 @@
*
* raylib [models] example - Waving cubes
*
-* This example has been created using raylib 2.5 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 2.5, last time updated with raylib 3.7
*
* Example contributed by Codecat (@codecat) and reviewed by Ramon Santamaria (@raysan5)
*
-* Copyright (c) 2019 Codecat (@codecat) and Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2019-2022 Codecat (@codecat) and Ramon Santamaria (@raysan5)
*
********************************************************************************************/
diff --git a/examples/models/models_yaw_pitch_roll.c b/examples/models/models_yaw_pitch_roll.c
index 009a825f..967be772 100644
--- a/examples/models/models_yaw_pitch_roll.c
+++ b/examples/models/models_yaw_pitch_roll.c
@@ -2,12 +2,14 @@
*
* raylib [models] example - Plane rotations (yaw, pitch, roll)
*
-* This example has been created using raylib 1.8 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
+* Example originally created with raylib 1.8, last time updated with raylib 4.0
*
* Example contributed by Berni (@Berni8k) and reviewed by Ramon Santamaria (@raysan5)
*
-* Copyright (c) 2017-2021 Berni (@Berni8k) and Ramon Santamaria (@raysan5)
+* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
+* BSD-like license that allows static linking with closed source software
+*
+* Copyright (c) 2017-2022 Berni (@Berni8k) and Ramon Santamaria (@raysan5)
*
********************************************************************************************/