Skeletal Animation example from https://learnopengl.com/Guest-Articles/2020/Skeletal-Animation.
^ "Peasant Girl" from mixamo.com.
# Any model with format ASSIMP supports can be loaded.
main vampire/dancing_vampire.dae
dancing_vampire.dae
can be downloaded from LearnOpenGL github.
See dependencies from #include
(s):
- ASSIMP:
vcpkg install assimp
. - GLM:
vcpkg install glm
. - STB:
vcpkg install stb
. - GLAD:
vcpkg install glad
. - GLFW:
vcpkg install glfw3
.
Once installed, compile and link with C++20 enabled.