Actor Animation not visible

Hey everyone! I wanted to create a game and got to the point, where I had to use Animations :smiley: . I’m using the YABEE exporter and watched a few Videos how to export .egg Models from Blender. When I export them I can see all my animations working in the pview. But when I use an Actor in Panda3d, I didnt work.

cube = Actor("res/cube.egg", {"bell_anim":"res/cube-bell_anim.egg"})
        cube.reparent_to(self.render)
        cube.loop("bell_anim")

I see the Model, but no movement or animation. I hope someone can help me!

I think it’s the case of Actor going out of scope, make sure you always have a reference to the Actor instance, for example making it a instance attribute (self.cube).

Thank you it woked! :smiley: