Hello. I made a model in MagicaVoxel and exported it as a .obj file. From here I went to http://www.mixamo.com and animated it. (I used the “Running” animation only for the sake of simplicity.) After animating the file I exported it as a .dae file and used the dae2egg program that is shipped with Panda3d to convert that to a .egg file. I have the .egg file and textures folder located in the same directory as my main .py script. My current code for the actor looks like this:
mainCharacter = Actor("mainChar.egg")
mainCharacter.reparentTo(render)
mainCharacter.loop("Running")
This loads the model to my program but does show an animation. Am I doing something incorrectly?
Thank you in advanced!