I am currently working on creating a 3D scene using JavaFX. On stage, I would like to show some more complex 3D models. Therefore, I used InteractiveMesh importers to import some OBJ / STL models that worked fine. I would also like to include an animated model (walk cycle). I found a sample JavaFX 3DViewer application that includes a Maya importer. Since I am not familiar with Maya and 3D modeling, I tried to find some free models that are animated, or at least rigged, online. Unfortunately, I could not find a single model that was not suitable for creating an animated walking cycle (falsification) or already animated, I could successfully open in 3DViewer. Usually, import is interrupted due to Nullpointer- or IndexOutOfBoundsExceptions when loading the Maya model.
Now I'm wondering if anyone managed to open the Maya animation model in 3DViewer? I appreciate links to models that can be successfully imported.
Also, are there other ways to import animated 3D models (not necessarily Maya models) into JavaFX?
source
share