Skip to content

Instantly share code, notes, and snippets.

@mandarinx
Created June 23, 2016 21:53
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mandarinx/b9f2dbcba611aa926ca98020b4538371 to your computer and use it in GitHub Desktop.
Save mandarinx/b9f2dbcba611aa926ca98020b4538371 to your computer and use it in GitHub Desktop.
Fullscreen game view in Unity
using UnityEditor;
using UnityEngine;
using System.Collections;
[InitializeOnLoad]
public class FullscreenPlayMode : MonoBehaviour {
//The size of the toolbar above the game view, excluding the OS border.
private static int tabHeight = 22;
static FullscreenPlayMode()
{
EditorApplication.playmodeStateChanged -= CheckPlayModeState;
EditorApplication.playmodeStateChanged += CheckPlayModeState;
}
static void CheckPlayModeState()
{
if (EditorApplication.isPlaying)
{
FullScreenGameWindow();
}
else
{
CloseGameWindow();
}
}
static EditorWindow GetMainGameView(){
EditorApplication.ExecuteMenuItem("Window/Game");
System.Type T = System.Type.GetType("UnityEditor.GameView,UnityEditor");
System.Reflection.MethodInfo GetMainGameView = T.GetMethod("GetMainGameView",System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Static);
System.Object Res = GetMainGameView.Invoke(null,null);
return (EditorWindow)Res;
}
static void FullScreenGameWindow(){
EditorWindow gameView = GetMainGameView();
gameView.title = "Game (Stereo)";
Rect newPos = new Rect(0, 0 - tabHeight, Screen.currentResolution.width, Screen.currentResolution.height + tabHeight);
gameView.position = newPos;
gameView.minSize = new Vector2(Screen.currentResolution.width, Screen.currentResolution.height + tabHeight);
gameView.maxSize = gameView.minSize;
gameView.position = newPos;
}
static void CloseGameWindow(){
EditorWindow gameView = GetMainGameView();
gameView.Close();
}
}
@Bian-Sh
Copy link

Bian-Sh commented Jan 7, 2019

this solution is not work fine with unity 2018 now ,what should i do as i an a newber??

@stickylabdev
Copy link

how to exit full gameview -_-

@Tymski
Copy link

Tymski commented Mar 16, 2021

For 2020 there is this semi-working gist https://gist.github.com/fnuecke/d4275087cc7969257eae0f939fac3d2f

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment