Skip to content

Commit

Permalink
Engine: Remove Unity splash screen (how)
Browse files Browse the repository at this point in the history
  • Loading branch information
0thElement committed Apr 17, 2024
1 parent 9a30754 commit 537a60e
Show file tree
Hide file tree
Showing 14 changed files with 2,829 additions and 4,814 deletions.
25 changes: 25 additions & 0 deletions Assets/Editor/ScriptBatch.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
using UnityEditor;

namespace ArcCreate.EditorScripts
{
public class ScriptBatch
{
private static readonly string[] Levels = new string[] {
"Assets/Scenes/Boot.unity",
"Assets/Scenes/Compose.unity",
"Assets/Scenes/Gameplay.unity",
"Assets/Scenes/Greeting.unity",
"Assets/Scenes/Remote.unity",
"Assets/Scenes/Result.unity",
"Assets/Scenes/Select.unity",
"Assets/Scenes/Storage.unity",
};

[MenuItem("ArcCreate/Custom build because linux is stupid")]
public static void BuildGame ()
{
string path = EditorUtility.SaveFolderPanel("Choose Location of Built Game", "", "");
BuildPipeline.BuildPlayer(Levels, path + "/ArcCreate", BuildTarget.StandaloneLinux64, BuildOptions.None);
}
}
}
11 changes: 11 additions & 0 deletions Assets/Editor/ScriptBatch.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2,379 changes: 22 additions & 2,357 deletions Assets/Fonts/NotoSans-Regular SDF.asset

Large diffs are not rendered by default.

Loading

0 comments on commit 537a60e

Please sign in to comment.