- def setConnect(self, conditionalFunction):
- self.conditionalFunction = conditionalFunction
+ def addMovePoint(self, x, y, time = 20):
+ self.path.append((x, y, time))
+
+ def moveTo(self, x, y, time = 20):
+ self.clearPath()
+ self.addMovePoint(x, y, time)