MCPcopy Create free account
hub / github.com/bigdra50/unity-cli / status

Method status

unity_cli/api/recorder.py:68–79  ·  view source on GitHub ↗

Get current recording status. Returns: Dictionary with recording status including: - recording: Whether recording is active - frameCount: Frames captured so far - elapsed: Time elapsed in seconds - fps: Current frames per second

(self)

Source from the content-addressed store, hash-verified

66 return self._conn.send_request("recorder", {"action": "stop"})
67
68 def status(self) -> dict[str, Any]:
69 """Get current recording status.
70
71 Returns:
72 Dictionary with recording status including:
73 - recording: Whether recording is active
74 - frameCount: Frames captured so far
75 - elapsed: Time elapsed in seconds
76 - fps: Current frames per second
77 - pendingWrites: Number of frames waiting to be written to disk
78 """
79 return self._conn.send_request("recorder", {"action": "status"})

Callers

nothing calls this directly

Calls 1

send_requestMethod · 0.80

Tested by

no test coverage detected