Animation Issues

I am trying to animate a model, but it will not work correctly. Last time this worked, I was on Windows with 1.8.0. Now I am on Ubuntu with 1.9.0. Here is my code:

from direct.showbase.ShowBase import ShowBase
from direct.actor.Actor import Actor

class Main(ShowBase):
	def __init__(self):
		ShowBase.__init__(self)
		
		self.mickey = Actor("phase_3/models/char/mickey-1200.bam", {"walk":"phase_3/models/char/mickey-walk.bam", "run": "phase_3/models/char/mickey-run.bam", "idle":"phase_3/models/char/mickey-wait.bam"})
		self.mickey.reparentTo(self.render)
		self.mickey.loop("walk")
		
if __name__ == '__main__':
	app = Main()
	app.run()

Hi,

I looked at your code and loaded it and for me its fine. Could it be the location of your camera? try loading phase_3/models/char/mickey-1200.bam with pview