Exit play mode. Returns: Dictionary with operation result
(self)
| 39 | return self._conn.send_request("playmode", {"action": "unpause"}) |
| 40 | |
| 41 | def stop(self) -> dict[str, Any]: |
| 42 | """Exit play mode. |
| 43 | |
| 44 | Returns: |
| 45 | Dictionary with operation result |
| 46 | """ |
| 47 | return self._conn.send_request("playmode", {"action": "exit"}) |
| 48 | |
| 49 | def step(self) -> dict[str, Any]: |
| 50 | """Step one frame. |
no test coverage detected