Doubles the current time factor value.
(self)
| 127 | return time_factor |
| 128 | |
| 129 | def increase(self): |
| 130 | """Doubles the current time factor value.""" |
| 131 | self.set(self._real_time_multiplier * 2.) |
| 132 | |
| 133 | def decrease(self): |
| 134 | """Halves the current time factor value.""" |