How to make my Unity3d standalone game run on full screen mode be default?
I tried to change the player settings but without any luck. I don't wanna see any toolbar above my game, or any close or resize buttons.
How to make my Unity3d standalone game run on full screen mode be default?
I tried to change the player settings but without any luck. I don't wanna see any toolbar above my game, or any close or resize buttons.
The following Player Settings will open the game with fullscreen exclusive mode, without any prompts:
Tested with Unity 5.6.0f3
You can do this in code, e.g.
public class FullscreenByDefault : MonoBehaviour
{
void Start()
{
Screen.fullScreen = true;
}
}
or in any existing MonoBehaviour