123456789101112131415 |
- from synergine.synergy.event.Event import Event
- from synergine.core.simulation.mechanism.Mechanism import Mechanism
-
-
- class MoveEvent(Event):
-
- def concern(self, object_id, context):
- return True
-
- def __init__(self, actions):
- super().__init__(actions)
- self._mechanism = Mechanism
-
- def _object_match(self, object_id, context, parameters={}):
- return True
|