AnimMgr.py 240 B

12345678910
  1. """
  2. Defines AnimMgr
  3. """
  4. from .AnimMgrBase import AnimMgrBase
  5. class AnimMgr(AnimMgrBase):
  6. """ Animation will create, manage, update animations in the scene """
  7. def __init__(self, editor):
  8. AnimMgrBase.__init__(self, editor)