Skip to content

Commit 29b5844

Browse files
committed
REVIEWED: Comments and header
1 parent aec6e85 commit 29b5844

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

examples/models/models_animation_blend_custom.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@
66
*
77
* Example originally created with raylib 5.5, last time updated with raylib 5.5
88
*
9+
* Example contributed by dmitrii-brand (@dmitrii-brand) and reviewed by Ramon Santamaria (@raysan5)
10+
*
911
* DETAILS: Example demonstrates per-bone animation blending, allowing smooth transitions
1012
* between two animations by interpolating bone transforms. This is useful for:
1113
* - Blending movement animations (walk/run) with action animations (jump/attack)
1214
* - Creating smooth animation transitions
1315
* - Layering animations (e.g., upper body attack while lower body walks)
1416
*
15-
* Example contributed by dmitrii-brand (@dmitrii-brand) and reviewed by Ramon Santamaria (@raysan5)
16-
*
17-
* NOTE: Due to limitations in the Apple OpenGL driver, this feature does not work on MacOS
17+
* WARNING: GPU skinning must be enabled in raylib with a compilation flag,
18+
* if not enabled, CPU skinning will be used instead
1819
*
1920
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
2021
* BSD-like license that allows static linking with closed source software

examples/models/models_animation_blending.c

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,19 @@
22
*
33
* raylib [models] example - animation blending
44
*
5-
* Example complexity rating: [☆☆☆☆] 0/4
5+
* Example complexity rating: [★★★★] 4/4
66
*
77
* Example originally created with raylib 5.5, last time updated with raylib 5.6-dev
88
*
9-
* Example contributed by Kirandeep (@Kirandeep-Singh-Khehra)
9+
* Example contributed by Kirandeep (@Kirandeep-Singh-Khehra) and reviewed by Ramon Santamaria (@raysan5)
10+
*
11+
* WARNING: GPU skinning must be enabled in raylib with a compilation flag,
12+
* if not enabled, CPU skinning will be used instead
1013
*
1114
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,
1215
* BSD-like license that allows static linking with closed source software
1316
*
14-
* Copyright (c) 2024 Kirandeep (@Kirandeep-Singh-Khehra)
15-
*
16-
* Note: Due to limitations in the Apple OpenGL driver, this feature does not work on MacOS
17-
* Note: This example uses CPU for updating meshes.
18-
* For GPU skinning see comments with 'INFO:'.
17+
* Copyright (c) 2024-2026 Kirandeep (@Kirandeep-Singh-Khehra) and Ramon Santamaria (@raysan5)
1918
*
2019
********************************************************************************************/
2120

examples/models/models_animation_timing.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* raylib [models] example - animation timing
44
*
5-
* Example complexity rating: [★★☆☆] 2/4
5+
* Example complexity rating: [★★★☆] 3/4
66
*
77
* Example originally created with raylib 5.6, last time updated with raylib 5.6
88
*

0 commit comments

Comments
 (0)