Skip to content

Commit eecc8de

Browse files
committed
Update intro logo and launch parameters
1 parent 59c385a commit eecc8de

4 files changed

Lines changed: 136 additions & 17 deletions

File tree

Assets/Loader/Loader.cs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,13 @@ public class Loader : MonoBehaviour {
1010

1111
void Start() {
1212
string[] args = System.Environment.GetCommandLineArgs();
13-
if (args.Length == 0) {
14-
StartCoroutine(ShowButtonsDelayed());
15-
}
16-
else {
17-
if (args[0].ToLowerInvariant() == "-play") SceneManager.LoadScene("Arcade");
18-
if (args[0].ToLowerInvariant() == "-sel") SceneManager.LoadScene("ArcadePlus");
19-
if (args[0].ToLowerInvariant() == "-dev") SceneManager.LoadScene("Developer");
13+
14+
foreach (string arg in args) {
15+
if (arg.ToLowerInvariant() == "-play") SceneManager.LoadScene("Arcade");
16+
if (arg.ToLowerInvariant() == "-sel") SceneManager.LoadScene("ArcadePlus");
17+
if (arg.ToLowerInvariant() == "-dev") SceneManager.LoadScene("Developer");
2018
}
19+
StartCoroutine(ShowButtonsDelayed());
2120
}
2221

2322
IEnumerator ShowButtonsDelayed() {

Assets/Loader/RGE Logo Intro.png

39.7 KB
Loading

Assets/Loader/RGE Logo Intro.png.meta

Lines changed: 118 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ProjectSettings/ProjectSettings.asset

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ PlayerSettings:
2424
m_SplashScreenLogoStyle: 1
2525
m_SplashScreenDrawMode: 0
2626
m_SplashScreenBackgroundAnimationZoom: 1
27-
m_SplashScreenLogoAnimationZoom: 1
27+
m_SplashScreenLogoAnimationZoom: 0.223
2828
m_SplashScreenBackgroundLandscapeAspect: 1
2929
m_SplashScreenBackgroundPortraitAspect: 1
3030
m_SplashScreenBackgroundLandscapeUvs:
@@ -39,11 +39,13 @@ PlayerSettings:
3939
y: 0
4040
width: 1
4141
height: 1
42-
m_SplashScreenLogos: []
42+
m_SplashScreenLogos:
43+
- logo: {fileID: 21300000, guid: 6e49660385360ca42bf45411c7873cf7, type: 3}
44+
duration: 2
4345
m_VirtualRealitySplashScreen: {fileID: 0}
4446
m_HolographicTrackingLossScreen: {fileID: 0}
45-
defaultScreenWidth: 1024
46-
defaultScreenHeight: 768
47+
defaultScreenWidth: 1920
48+
defaultScreenHeight: 1080
4749
defaultScreenWidthWeb: 960
4850
defaultScreenHeightWeb: 600
4951
m_StereoRenderingPath: 0
@@ -82,7 +84,7 @@ PlayerSettings:
8284
bakeCollisionMeshes: 0
8385
forceSingleInstance: 0
8486
useFlipModelSwapchain: 1
85-
resizableWindow: 0
87+
resizableWindow: 1
8688
useMacAppStoreValidation: 0
8789
macAppStoreCategory: public.app-category.games
8890
gpuSkinning: 0
@@ -93,7 +95,7 @@ PlayerSettings:
9395
xboxEnableFitness: 0
9496
visibleInBackground: 1
9597
allowFullscreenSwitch: 1
96-
fullscreenMode: 1
98+
fullscreenMode: 3
9799
xboxSpeechDB: 0
98100
xboxEnableHeadOrientation: 0
99101
xboxEnableGuest: 0
@@ -121,11 +123,11 @@ PlayerSettings:
121123
vulkanEnableSetSRGBWrite: 0
122124
vulkanEnableLateAcquireNextImage: 0
123125
m_SupportedAspectRatios:
124-
4:3: 1
125-
5:4: 1
126-
16:10: 1
126+
4:3: 0
127+
5:4: 0
128+
16:10: 0
127129
16:9: 1
128-
Others: 1
130+
Others: 0
129131
bundleVersion: 0.1
130132
preloadedAssets: []
131133
metroInputSource: 0

0 commit comments

Comments
 (0)