0

I am working on an android native project where there is a requirement to load animated fbx models on app, is there a way to achieve this.

  • You may want to try Open Asset Import Library (assimp) - https://github.com/assimp/assimp. It supports various file formats such as fbx. Here is also a blog post on how you could achieve this, http://www.anandmuralidhar.com/blog/android/assimp/ – Oush Dec 13 '18 at 17:18
  • trying this app but getting this issue "Tool chain 'ndk-gcc' (GNU GCC): XCode arm-linux-androideabi-gcc is a wrapper around Clang. Treating it as Clang and not GCC. Stuck with this project compilation issue." unable to compile. – Shahbaz sultan Jan 16 '19 at 18:16
  • Resolved the GNU GCC by downgrading to ndk-12, but question still is open for skeletal animation. – Shahbaz sultan Jan 24 '19 at 06:07

1 Answers1

-1

Skeletal animation are supported on the latest master for the FBX format. So just go for it. You can check this popular tutorial how to do this with assimp by using c: Skeletal animation with assimp

KimKulling
  • 2,654
  • 1
  • 15
  • 26