(self)
| 504 | return self._playerPaused |
| 505 | |
| 506 | def getGlobalPosition(self): |
| 507 | if not self._lastGlobalUpdate: |
| 508 | return 0.0 |
| 509 | position = self._globalPosition |
| 510 | if not self._globalPaused: |
| 511 | position += time.time() - self._lastGlobalUpdate |
| 512 | return position |
| 513 | |
| 514 | def getGlobalPaused(self): |
| 515 | if not self._lastGlobalUpdate: |
no outgoing calls
no test coverage detected