(self, viz)
| 172 | |
| 173 | class BackgroundPlayer: |
| 174 | def __init__(self, viz): |
| 175 | self.viz = viz |
| 176 | self.can_run = Event() |
| 177 | self.can_run.clear() |
| 178 | self.running = True |
| 179 | self.paused = True |
| 180 | self.speed = "F" |
| 181 | |
| 182 | def run(self): |
| 183 | while self.running: |