Updated Frequently Asked Questions (markdown)

master
Ray 3 years ago
parent
commit
6a2e04a1e6
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      Frequently-Asked-Questions.md

+ 4
- 1
Frequently-Asked-Questions.md

@ -251,7 +251,10 @@ LoadFontEx("myfont.ttf", 50, NULL, 0);
## How do I load my 3d model animations in raylib?
3d animations is a complex topic. raylib supports IQM file-format animations loading but there are multiple ways to create them and export the IQM file, it is very possible that depending on that process raylib could not load animations from IQM file. GLTF file-format also supports animation but raylib is not able to load them at this moment. For anyone adventurous enough to try to implement GLTF animations support in raylib, you can check [`rmodels.c`](https://github.com/raysan5/raylib/blob/master/src/rmodels.c) module and `LoadGLTF()` function implementation.
raylib supports several 3d fileformats including animations:
- IQM: There is a Blender exporter but there are multiple ways to create the animations and export the IQM file, depending on the process used, raylib could load the animations or not. Several users reported having problems with IQM aniamtions.
- GLTF: This file-format supports animation but raylib is not able to load them at this moment. GLTF animations loading was implemented in the past but GLTF is a quite complex file format and could implement animations in multiple ways, raylib used to fail a lot on loading them and support was removed. For anyone adventurous enough to try to implement GLTF animations support in raylib, you can check [`rmodels.c`](https://github.com/raysan5/raylib/blob/master/src/rmodels.c) module and `LoadGLTF()` function implementation.
- M3D: Animations support was implemented recently (after raylib 4.2 release) so users using M3D models must used latest raylib master branch. It works great and there is a Blender exporter for .m3d files with animations that it's proved to work good.
## Does raylib support Vulkan? Will raylib support it?

Loading…
Cancel
Save