LUIObject.py 460 B

12345678910111213141516171819
  1. """
  2. This is a wrapper file. It contains no actual implementation
  3. """
  4. from panda3d.lui import LUIObject as _LUIObject
  5. from LUIInitialState import LUIInitialState
  6. __all__ = ["LUIObject"]
  7. class LUIObject(_LUIObject):
  8. """ This is a wrapper class for the C++ LUIObject class, to be able to
  9. use it in a more convenient way """
  10. def __init__(self, *args, **kwargs):
  11. _LUIObject.__init__(self, *args)
  12. LUIInitialState.init(self, kwargs)