I have created and exported my model from 3DS Max into the Panda3D. I have skinned my “stick man” and used biped.
The model loads OK but I am not being able to add any movement/animation to it. It twists the part capture and it behaves strangely.
The code I am using is: #Expose and control the joints
self.upperarm= self.stickman.exposeJoint(None, ‘modelRoot’, ‘Bip01 R UpperArm’)
self.upperarmC= self.stickman.controlJoint(None, ‘modelRoot’, ‘Bip01 R UpperArm’)
I want it to move the position, so in this case for example I want the arm to raise and not twist…
I thought about hprinterval but it still don’t work!!
Thanks!!