(self)
| 3194 | int((mode.ticks_per_trial / 10.0) * \ |
| 3195 | (mode.num_trials_total))) |
| 3196 | def flash(self): |
| 3197 | pyglet.clock.unschedule(sessionInfoLabel.unflash) |
| 3198 | self.label.bold = True |
| 3199 | self.update() |
| 3200 | pyglet.clock.schedule_once(sessionInfoLabel.unflash, 1.0) |
| 3201 | def unflash(self, dt): |
| 3202 | self.label.bold = False |
| 3203 | self.update() |