# Uloop Set Game View Size

> Set or inspect the Unity Game View custom rendering resolution.

- Skill: `cyberagentgameentertainment/uloop-set-game-view-size` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cyberagentgameentertainment/uloop-set-game-view-size`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cyberagentgameentertainment/uloop-set-game-view-size/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: cyberagentgameentertainment (https://skillmd.com/u/cyberagentgameentertainment)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/cyberagentgameentertainment/uloop-set-game-view-size

---


# uloop set-game-view-size

Set or inspect the Unity Game View custom rendering resolution.

## Usage

```bash
uloop set-game-view-size [--width <width> --height <height>]
```

## Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `--width` | integer | unset | Target Game View rendering width in pixels. Provide with `--height` to change the resolution. |
| `--height` | integer | unset | Target Game View rendering height in pixels. Provide with `--width` to change the resolution. |

## Output

Returns JSON containing:

- `Success`: Whether the request completed.
- `PreviousWidth` / `PreviousHeight`: Resolution before the request.
- `CurrentWidth` / `CurrentHeight`: Resolution after the request.
- `Changed`: Whether the resolution changed.
- `Message`: Human-readable status.

## Examples

```bash
# Read the current custom rendering resolution
uloop set-game-view-size

# Set a Full HD custom rendering resolution
uloop set-game-view-size --width 1920 --height 1080
```

## Notes

- Width and height must be provided together when changing the resolution.
- The tool uses Unity's public `UnityEditor.PlayModeWindow` API and does not require reflection.

