Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Unity, How to Stop Popup for "Show Unity Splashscreen"

Tags:

I'm just now learning how to use Unity to mess around in SteamVR. Every time I press the play button to test out my scene, I get this annoying popup. The tutorial I'm following doesn't have this problem. How can I get the popup to go away for good? I always "Accept" it and it tells me "I made the right choice" but then it just comes back next time. And... it pops up randomly as well...

Show Unity Splashscreen Popup

like image 532
CodeMonkey Avatar asked Jan 01 '17 19:01

CodeMonkey


People also ask

How do I change the splash screen in unity?

Unity Splash Screen settings. To access the Unity Splash Screen settings, go to Edit > Project Settings > Player. In the Inspector window, navigate to Splash Image > Splash Screen.


2 Answers

Go to Assets/SteamVR/Editor/SteamVR_Settings.cs and change recommended_ShowUnitySplashScreen to true. You'll have to do this each time you update the SteamVR Unity Asset, until they fix it to check which edition you're using.

like image 131
Alex May Avatar answered Nov 25 '22 12:11

Alex May


The location changed. I found the bool recommended_ShowUnitySplashScreen in Assets\SteamVR\Editor\SteamVR_UnitySettingsWindow.cs.

like image 34
Julian Avatar answered Nov 25 '22 14:11

Julian