screenshot-game-view

Captures a screenshot from the Unity Editor Game View as an image.

1|Updated Apr 1, 2026
One-click install
npx skills add https://github.com/Fermisloth/Project-Aegis-Adaptive-Outbreak-Containment --skill screenshot-game-view-fermisloth
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: screenshot-game-view
Source: https://github.com/Fermisloth/Project-Aegis-Adaptive-Outbreak-Containment/tree/main/.agent/skills/screenshot-game-view
Command: npx skills add https://github.com/Fermisloth/Project-Aegis-Adaptive-Outbreak-Containment --skill screenshot-game-view-fermisloth

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires unity-mcp-cli.

What problem does it solve? When developing or debugging a Unity project, you often need to visually verify what is currently rendered in the Game View without manually switching to the editor and taking a screenshot yourself. This Skill captures the Game View's render texture directly through the Unity Editor API and returns it as an image for immediate visual inspection. ## Core Features & Use Cases - Direct Render Texture Capture: Reads the Game View's own render texture via the Unity Editor API, so the image matches the current Game View resolution exactly. - LLM Visual Inspection: Returns the captured image directly, allowing an AI assistant to visually analyze the scene, UI layout, or rendering output. - Use Case: While iterating on a Unity scene, ask the assistant to capture the Game View to confirm that a newly placed object, lighting change, or UI element appears correctly without leaving your workflow. ## Quick Start Ask the assistant to take a screenshot of the Unity Game View so you can visually check the current scene rendering.

Frequently Asked Questions about screenshot-game-view

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I take a screenshot of the Unity Game View programmatically?

Use the unity-mcp-cli run-tool command with the screenshot-game-view tool, which reads the Game View's render texture through the Unity Editor API. The captured image is returned directly for visual inspection.

What resolution does a Unity Game View screenshot have?

The captured image matches the current Game View resolution exactly, since it reads the Game View's own render texture rather than using a fixed or scaled size.

Why is unity-mcp-cli not found when running the screenshot tool?

The unity-mcp-cli package is not installed or not on your PATH. Install it globally with npm install -g unity-mcp-cli, or invoke it with npx unity-mcp-cli instead.

Does the Unity Game View screenshot tool require input parameters?

No meaningful input is required. The tool accepts an optional placeholder string field named nothing, and it captures whatever the Game View is currently rendering.

Can I capture the Unity Scene View instead of the Game View?

This tool only reads the Game View's render texture via the Unity Editor API. Capturing the Scene View would require a different tool that targets the Scene View camera or window.