This website works better with JavaScript.
Home
Explore
Help
Sign In
Archivist
/
raylib-src
mirror of
https://github.com/raysan5/raylib
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
24
Wiki
Activity
Browse Source
Don't require a M3d animation only file to have a mesh. There are valid use cases for animation only files that can be applied to N other meshes. (
#5475
)
pull/5481/head
Jeffery Myers
4 days ago
committed by
GitHub
parent
3678c2d157
commit
c78ac65786
No known key found for this signature in database
GPG Key ID:
B5690EEEBB952194
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
src/rmodels.c
+ 2
- 2
src/rmodels.c
View File
@ -7045,8 +7045,8 @@ static ModelAnimation *LoadModelAnimationsM3D(const char *fileName, int *animCou
else
TRACELOG
(
LOG_INFO
,
"
MODEL: [%s] M3D data loaded successfully: %i animations, %i bones, %i skins
"
,
fileName
,
m3d
-
>
numaction
,
m3d
-
>
numbone
,
m3d
-
>
numskin
)
;
/
/
No
animation
or
bone
+
skin
?
if
(
!
m3d
-
>
numaction
|
|
!
m3d
-
>
numbone
|
|
!
m3d
-
>
numskin
)
/
/
No
animation
or
bone
s
,
exit
out
.
skins
are
not
required
because
some
people
use
one
animation
for
N
models
if
(
!
m3d
-
>
numaction
|
|
!
m3d
-
>
numbone
)
{
m3d_free
(
m3d
)
;
UnloadFileData
(
fileData
)
;
Write
Preview
Loading…
Cancel
Save