Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Capture a screenshot of the Unity Editor's Game View by reading its internal render texture directly. Image size matches the current Game View resolution; the tool corrects Y-flip on DirectX / Metal so the output is always upright. Requires an open Game View window.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-18 | ✗→✓ | ▲ Improved | -58% | 0% |
| case-01 | ✗→✓ | ▲ Improved | -35% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -46% | 0% |
| case-08 | ✗→✓ | ▲ Improved | -49% | 0% |
| case-11 | ✗→✓ | ▲ Improved | -64% | 0% |
Captures a screenshot from the Unity Editor Game View and returns it as an image. Reads the Game View's own render texture directly via the Unity Editor API. The image size matches the current Game View resolution. Returns the image directly for visual inspection by the LLM.
Locates UnityEditor.GameView, repaints it, then reflects the m_RenderTexture field and reads back via Texture2D.ReadPixels. On graphics APIs whose UV origin is top-left (SystemInfo.graphicsUVStartsAtTop), the read-back pixels are vertically flipped before encoding so the orientation matches what the user sees. Returns a PNG image with the resolution baked into the caption.
bashunity-mcp-cli run-tool screenshot-game-view --input '{ "nothing": "string_value" }'
> For complex input (multi-line strings, code), save the JSON to a file and use: > bash > unity-mcp-cli run-tool screenshot-game-view --input-file args.json > > > Or pipe via stdin (recommended): > bash > unity-mcp-cli run-tool screenshot-game-view --input-file - <<'EOF' > {"param": "value"} > EOF >
If unity-mcp-cli is not found, either install it globally (npm install -g unity-mcp-cli) or use npx unity-mcp-cli instead. Read the /unity-initial-setup skill for detailed installation instructions.
| Name | Type | Required | Description | |------|------|----------|-------------| | nothing | string | No | |
json{ "type": "object", "properties": { "nothing": { "type": "string" } } }
This tool does not return structured output.
Other measured skills in the registry, with their headline benchmark lift.