Open Unity Game View in true fullscreen mode topmost, taskbar hidden, single hotkey. Test your game exactly as it appears in a build, without leaving the editor.
Unity built-in "Maximize on Play" doesn't actually go fullscreen the taskbar, window borders, and editor chrome stay visible. This tool fixes that with a single editor script.
- ✅ True fullscreen Game View (topmost window, above all others)
- ✅ Automatically hides the Windows taskbar
- ✅ Toggle on/off with
Ctrl + Shift + Alt + X - ✅ Auto-restores taskbar on editor quit or recompile
- ✅ Single file, zero dependencies
- ✅ MIT licensed - use in commercial projects
- Download
FullscreenGameView.cs - Place it inside any
Editor/folder in your Unity project - Wait for Unity to compile
git clone https://github.com/AO-85/unity-fullscreen-game-view.gitThen copy Assets/Editor/FullscreenGameView.cs into your project.
Enter Play Mode, then:
- Hotkey:
Ctrl + Shift + Alt + X - Menu:
Window → Toggle Fullscreen Game View
Press once to enter fullscreen, press again to exit.
- Unity 2020.3 LTS or newer (tested on Unity 6)
- Windows 10 / 11 for taskbar hiding (uses
user32.dll) - Fullscreen view itself works on macOS/Linux, but taskbar API calls are Windows-only
Uses reflection to instantiate Unity's internal UnityEditor.GameView as a borderless popup, then calls Win32 SetWindowPos with HWND_TOPMOST to keep it above the taskbar and all other windows.
If this tool saved you time, consider buying me a coffee ☕
MIT - free for personal and commercial use.
unity, unity3d, unity editor, fullscreen, game view, editor tool, unity tool, gamedev, c#, indie dev
