Capture any Unity EditorWindow by name and save as PNG.
| --window-name | string | Game | Window name to capture (e.g., "Game", "Scene", "Console", "Inspector", "Project", "Hierarchy", or any EditorWindow title) | | --resolution-scale | number | 1.0 | Resolution scale (0.1 to 1.0) | | --match-mode | enum | exact | Window name matching mode: exact, prefix, or contains. All modes are case-insensitive. |
| exact | Window name must match exactly (case-insensitive) | "Project" matches "Project" only | | prefix | Window name must start with the input | "Project" matches "Project" and "Project Settings" | | contains | Window name must contain the input anywhere | "set" matches "Project Settings" |
Take a screenshot of Unity Editor windows and save as PNG image. Use when you need to: (1) Screenshot the Game View, Scene View, Console, Inspector, or other windows, (2) Capture current visual state for debugging or documentation, (3) Save what the Editor looks like as an image file. Source: hatayama/uloopmcp.