(self, client)
| 15 | |
| 16 | class UnityVRSupport(): |
| 17 | def __init__(self, client): |
| 18 | self.client = client |
| 19 | self.support_vr = False |
| 20 | try: |
| 21 | self.support_vr = self.client.call("isVrSupported") |
| 22 | except InvalidOperationException: |
| 23 | raise InvalidOperationException('VR not supported') |
| 24 | |
| 25 | def hasMovementFinished(self): |
| 26 | success, error_msg =self.client.call("hasMovementFinished").wait() |
nothing calls this directly
no test coverage detected