ObjectMgr.py 240 B

12345678910
  1. """
  2. Defines ObjectMgr
  3. """
  4. from ObjectMgrBase import *
  5. class ObjectMgr(ObjectMgrBase):
  6. """ ObjectMgr will create, manage, update objects in the scene """
  7. def __init__(self, editor):
  8. ObjectMgrBase.__init__(self, editor)