We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1cd34a commit fc85cd4Copy full SHA for fc85cd4
scripts/gha/integration_testing/AppBuilderHelper.cs
@@ -435,7 +435,7 @@ private static string[] GetScenes() {
435
string menuScene = "Menu.unity";
436
string mainScene = "MainScene.unity";
437
string autoScene = "MainSceneAutomated.unity";
438
- string[] expectedScenes = new [] { mainScene, menuScene, autoScene };
+ string[] expectedScenes = new [] { autoScene, mainScene };
439
var scenes = Directory.GetFiles("Assets", "*.unity", SearchOption.AllDirectories)
440
.Where(path => expectedScenes.Contains(Path.GetFileName(path)))
441
.OrderBy(path => Array.IndexOf(expectedScenes, Path.GetFileName(path)))
0 commit comments