Pheromon.py 403B

123456789101112131415
  1. from xyzworld.SynergyObject import SynergyObject as XyzSynergyObject
  2. class Pheromon(XyzSynergyObject):
  3. def __init__(self, collection, context):
  4. super().__init__(collection, context)
  5. self._direction = None
  6. # TODO: direction ailleurs non ?
  7. def set_direction(self, direction):
  8. self._direction = direction
  9. def get_direction(self):
  10. return self._direction