(self, dt)
| 3551 | self.color = (0, 0, 255, 255) |
| 3552 | |
| 3553 | def tick(self, dt): |
| 3554 | self.counter += 1 |
| 3555 | if self.counter == cfg.SACCADIC_REPETITIONS: |
| 3556 | self.stop() |
| 3557 | elif self.position == 'left': |
| 3558 | self.position = 'right' |
| 3559 | else: self.position = 'left' |
| 3560 | |
| 3561 | def start(self): |
| 3562 | self.position = 'left' |
no test coverage detected