I've tried to import all file types that JME supports, but no luck.
I exported a model with Blender (I am pretty fluent with Blender) to .xml (with a plugin) and to .obj and .3ds.
It is a low-poly mesh that I made, with no materials, subsurf, or anything!
I used all of the importers, and I always get this error (this one is XmlWorld):
SEVERE: Exception in game loop
java.lang.NullPointerException
at hello3d.test.importtest.simpleInitGame(importtest.java:80)
at com.jme.app.BaseSimpleGame.initGame(BaseSimpleGame.java:544)
at com.jme.app.SimplePassGame.initGame(SimplePassGame.java:101)
at com.jme.app.BaseGame.start(BaseGame.java:74)
at hello3d.test.importtest.main(importtest.java:52)
Any ideas on how to fix this error?
Oh, and since my model is so low-poly, can I just make an array of the points and faces?
I remember that Java 3D had that sort of feature...