Skip to content

Commit d8f3b51

Browse files
committed
REXM: RENAME: example: models_animation --> models_animation_playing
1 parent 4a23ed6 commit d8f3b51

File tree

8 files changed

+574
-574
lines changed

8 files changed

+574
-574
lines changed

examples/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ TEXT = \
601601
text/text_writing_anim
602602

603603
MODELS = \
604-
models/models_animation \
604+
models/models_animation_playing \
605605
models/models_billboard_rendering \
606606
models/models_bone_socket \
607607
models/models_box_collisions \

examples/Makefile.Web

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ TEXT = \
601601
text/text_writing_anim
602602

603603
MODELS = \
604-
models/models_animation \
604+
models/models_animation_playing \
605605
models/models_billboard_rendering \
606606
models/models_bone_socket \
607607
models/models_box_collisions \
@@ -1018,7 +1018,7 @@ text/text_writing_anim: text/text_writing_anim.c
10181018
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
10191019

10201020
# Compile MODELS examples
1021-
models/models_animation: models/models_animation.c
1021+
models/models_animation_playing: models/models_animation_playing.c
10221022
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
10231023
--preload-file models/resources/models/iqm/guy.iqm@resources/models/iqm/guy.iqm \
10241024
--preload-file models/resources/models/iqm/guytex.png@resources/models/iqm/guytex.png \

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Examples using raylib models functionality, including models loading/generation
147147

148148
| example | image | difficulty<br>level | version<br>created | last version<br>updated | original<br>developer |
149149
|-----------|--------|:-------------------:|:------------------:|:-----------------------:|:----------------------|
150-
| [models_animation](models/models_animation.c) | <img src="models/models_animation.png" alt="models_animation" width="80"> | ⭐⭐☆☆ | 2.5 | 3.5 | [Culacant](https://github.com/culacant) |
150+
| [models_animation_playing](models/models_animation_playing.c) | <img src="models/models_animation_playing.png" alt="models_animation_playing" width="80"> | ⭐⭐☆☆ | 2.5 | 3.5 | [Culacant](https://github.com/culacant) |
151151
| [models_billboard_rendering](models/models_billboard_rendering.c) | <img src="models/models_billboard_rendering.png" alt="models_billboard_rendering" width="80"> | ⭐⭐⭐☆ | 1.3 | 3.5 | [Ramon Santamaria](https://github.com/raysan5) |
152152
| [models_box_collisions](models/models_box_collisions.c) | <img src="models/models_box_collisions.png" alt="models_box_collisions" width="80"> | ⭐☆☆☆ | 1.3 | 3.5 | [Ramon Santamaria](https://github.com/raysan5) |
153153
| [models_cubicmap_rendering](models/models_cubicmap_rendering.c) | <img src="models/models_cubicmap_rendering.png" alt="models_cubicmap_rendering" width="80"> | ⭐⭐☆☆ | 1.8 | 3.5 | [Ramon Santamaria](https://github.com/raysan5) |

examples/examples_list.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ text;text_unicode_emojis;★★★★;2.5;4.0;2019;2025;"Vlad Adrian";@demizdor
101101
text;text_unicode_ranges;★★★★;5.5;5.6;2025;2025;"Vlad Adrian";@demizdor
102102
text;text_3d_drawing;★★★★;3.5;4.0;2021;2025;"Vlad Adrian";@demizdor
103103
text;text_codepoints_loading;★★★☆;4.2;4.2;2022;2025;"Ramon Santamaria";@raysan5
104-
models;models_animation;★★☆☆;2.5;3.5;2019;2025;"Culacant";@culacant
104+
models;models_animation_playing;★★☆☆;2.5;3.5;2019;2025;"Culacant";@culacant
105105
models;models_billboard_rendering;★★★☆;1.3;3.5;2015;2025;"Ramon Santamaria";@raysan5
106106
models;models_box_collisions;★☆☆☆;1.3;3.5;2015;2025;"Ramon Santamaria";@raysan5
107107
models;models_cubicmap_rendering;★★☆☆;1.8;3.5;2015;2025;"Ramon Santamaria";@raysan5
File renamed without changes.
File renamed without changes.

projects/VS2022/examples/models_animation.vcxproj renamed to projects/VS2022/examples/models_animation_playing.vcxproj

Lines changed: 568 additions & 568 deletions
Large diffs are not rendered by default.

projects/VS2022/raylib.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "core_window_letterbox", "ex
8585
EndProject
8686
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "core_world_screen", "examples\core_world_screen.vcxproj", "{79417CE2-FEEB-42F0-BC53-62D5267B19B1}"
8787
EndProject
88-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "models_animation", "examples\models_animation.vcxproj", "{AFDDE100-2D36-4749-817D-12E54C56312F}"
88+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "models_animation_playing", "examples\models_animation_playing.vcxproj", "{AFDDE100-2D36-4749-817D-12E54C56312F}"
8989
EndProject
9090
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "models_billboard_rendering", "examples\models_billboard_rendering.vcxproj", "{B7812167-50FB-4934-996F-DF6FE4CBBFDF}"
9191
EndProject

0 commit comments

Comments
 (0)