Last active
March 24, 2025 12:57
-
-
Save radiatoryang/b65e9c4807a64987aba2 to your computer and use it in GitHub Desktop.
This is my Unity Editor build script that I use for my games, to automatically build out players and package them in ZIP files.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEditor; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.IO; | |
using System.IO.Compression; | |
using Ionic.Zip; // this uses the Unity port of DotNetZip https://github.com/r2d2rigo/dotnetzip-for-unity | |
// place in an "Editor" folder in your Assets folder | |
public class BuildRadiator { | |
// TODO: turn this into a wizard or something??? whatever | |
[MenuItem("BuildRadiator/Build Windows")] | |
public static void StartWindows () | |
{ | |
// Get filename. | |
string path = EditorUtility.SaveFolderPanel("Build out WINDOWS to...", | |
GetProjectFolderPath() + "/Builds/", | |
""); | |
var filename = path.Split('/'); // do this so I can grab the project folder name | |
BuildPlayer ( BuildTarget.StandaloneWindows, filename[filename.Length-1], path + "/" ); | |
} | |
[MenuItem("BuildRadiator/Build Windows + Mac OSX + Linux")] | |
public static void StartAll () | |
{ | |
// Get filename. | |
string path = EditorUtility.SaveFolderPanel("Build out ALL STANDALONES to...", | |
GetProjectFolderPath() + "/Builds/", | |
""); | |
var filename = path.Split('/'); // do this so I can grab the project folder name | |
BuildPlayer ( BuildTarget.StandaloneOSXUniversal, filename[filename.Length-1], path + "/" ); | |
BuildPlayer ( BuildTarget.StandaloneLinuxUniversal, filename[filename.Length-1], path + "/" ); | |
BuildPlayer ( BuildTarget.StandaloneWindows, filename[filename.Length-1], path + "/" ); | |
} | |
// this is the main player builder function | |
static void BuildPlayer ( BuildTarget buildTarget, string filename, string path ) { | |
string fileExtension = ""; | |
string dataPath = ""; | |
string modifier = ""; | |
// configure path variables based on the platform we're targeting | |
switch ( buildTarget ) { | |
case BuildTarget.StandaloneWindows: | |
case BuildTarget.StandaloneWindows64: | |
modifier = "_windows"; | |
fileExtension = ".exe"; | |
dataPath = "_Data/"; | |
break; | |
case BuildTarget.StandaloneOSXIntel: | |
case BuildTarget.StandaloneOSXIntel64: | |
case BuildTarget.StandaloneOSXUniversal: | |
modifier = "_mac-osx"; | |
fileExtension = ".app"; | |
dataPath = fileExtension + "/Contents/"; | |
break; | |
case BuildTarget.StandaloneLinux: | |
case BuildTarget.StandaloneLinux64: | |
case BuildTarget.StandaloneLinuxUniversal: | |
modifier = "_linux"; | |
dataPath = "_Data/"; | |
switch ( buildTarget ) { | |
case BuildTarget.StandaloneLinux: fileExtension = ".x86"; break; | |
case BuildTarget.StandaloneLinux64: fileExtension = ".x64"; break; | |
case BuildTarget.StandaloneLinuxUniversal: fileExtension = ".x86_64"; break; | |
} | |
break; | |
} | |
Debug.Log ("====== BuildPlayer: " + buildTarget.ToString () + " at " + path + filename ); | |
EditorUserBuildSettings.SwitchActiveBuildTarget(buildTarget); | |
// build out the player | |
string buildPath = path + filename + modifier + "/"; | |
Debug.Log ("buildpath: " + buildPath ); | |
string playerPath = buildPath + filename + modifier + fileExtension; | |
Debug.Log ("playerpath: " + playerPath); | |
BuildPipeline.BuildPlayer(GetScenePaths(), playerPath, buildTarget, buildTarget == BuildTarget.StandaloneWindows ? BuildOptions.ShowBuiltPlayer : BuildOptions.None); | |
// Copy files over into builds | |
string fullDataPath = buildPath + filename + modifier + dataPath; | |
Debug.Log ("fullDataPath: " + fullDataPath ); | |
CopyFromProjectAssets( fullDataPath, "languages"); // language text files that Radiator uses | |
// TODO: copy over readme | |
// ZIP everything | |
CompressDirectory( buildPath, path + "/" + filename + modifier + ".zip" ); | |
} | |
// from http://wiki.unity3d.com/index.php?title=AutoBuilder | |
static string[] GetScenePaths() { | |
string[] scenes = new string[EditorBuildSettings.scenes.Length]; | |
for(int i = 0; i < scenes.Length; i++) { | |
scenes[i] = EditorBuildSettings.scenes[i].path; | |
} | |
return scenes; | |
} | |
static string GetProjectName() { | |
string[] s = Application.dataPath.Split('/'); | |
return s[s.Length - 2]; | |
} | |
static string GetProjectFolderPath() { | |
var s = Application.dataPath; | |
s = s.Substring ( s.Length - 7, 7); // remove "Assets/" | |
return s; | |
} | |
// copies over files from somewhere in my project folder to my standalone build's path | |
// do not put a "/" at beginning of assetsFolderName | |
static void CopyFromProjectAssets( string fullDataPath, string assetsFolderPath, bool deleteMetaFiles = true ) { | |
Debug.Log ("CopyFromProjectAssets: copying over " + assetsFolderPath ); | |
FileUtil.ReplaceDirectory(Application.dataPath + "/" + assetsFolderPath, fullDataPath + assetsFolderPath ); // copy over languages | |
// delete all meta files | |
if (deleteMetaFiles) { | |
var metaFiles = Directory.GetFiles ( fullDataPath + assetsFolderPath, "*.meta", SearchOption.AllDirectories); | |
foreach ( var meta in metaFiles ) { | |
FileUtil.DeleteFileOrDirectory( meta ); | |
} | |
} | |
} | |
// compress the folder into a ZIP file, uses https://github.com/r2d2rigo/dotnetzip-for-unity | |
static void CompressDirectory (string directory, string zipFileOutputPath) { | |
Debug.Log ("attempting to compress " + directory + " into " + zipFileOutputPath ); | |
// display fake percentage, I can't get zip.SaveProgress event handler to work for some reason, whatever | |
EditorUtility.DisplayProgressBar( "COMPRESSING... please wait", zipFileOutputPath, 0.38f ); | |
using (ZipFile zip = new ZipFile()) | |
{ | |
zip.ParallelDeflateThreshold = -1; // DotNetZip bugfix that corrupts DLLs / binaries http://stackoverflow.com/questions/15337186/dotnetzip-badreadexception-on-extract | |
zip.AddDirectory (directory); | |
zip.Save(zipFileOutputPath); | |
} | |
EditorUtility.ClearProgressBar(); | |
} | |
} |
I am trying to understand your code and I was wondering do you need all the BuildPlayer and case code or can you set most of the settings with Unity's Build Settings?
I don't need to make a bunch of builds for multiple systems I just need a basic PC, MAC, Linux Standalone build that I can set up with the built in Unity Build tools but I want a script that will take the resulting files and put them all in a Zip file possibly with a costume extension instead of .zip; Do you know if this is possible and if so how it might be done?
Thank you.
I've actually disabled the ZIP stuff in my own editor because it turns out
it's an unreliable ZIP library that some OSes don't read... e.g MacOS is
picky.
I suggest looking up a better build system plugin on GitHub for your needs!
They are much better than this script! Good luck
…-- r
On Fri, Mar 27, 2020, 15:59 Giantbean ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
I am trying to understand your code and I was wondering do you need all
the BuildPlayer and case code or can you set most of the settings with
Unity's Build Settings?
I don't need to make a bunch of builds for multiple systems I just need a
basic PC, MAC, Linux Standalone build that I can set up with the built in
Unity Build tools but I want a script that will take the resulting files
and put them all in a Zip file possibly with a costume extension instead of
.zip; Do you know if this is possible and if so how it might be done?
Thank you.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<https://gist.github.com/b65e9c4807a64987aba2#gistcomment-3230158>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAROC57OWSORFG5H2D4QA7DRJUAR7ANCNFSM4LVIDJLQ>
.
Thanks I will look into those.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, i use your script to try build my project but i got error.
the error says:
LICENSE SYSTEM [20181226 16:11:0] 00330-80123-38760-AA904 != 00330-80000-00000-AA766
Built from '2017.3/release' branch; Version is '2017.3.1f1 (fc1d3344e6ea) revision 16522547'; Using compiler version '160040219'
OS: 'Windows 10 (10.0.0) 64bit' Language: 'en' Physical Memory: 8144 MB
BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
[Package Manager] Server::Start -- Port 51619 was selected
COMMAND LINE ARGUMENTS:
C:\Program Files\Unity\Editor\Unity.exe
-quit
-batchmode
-projectPath
C:\Program
Files
(x86)\Jenkins\workspace\My-Project
-executeMethod
BuildRadiator.StartWindows
-logFile
D:\CUSTOM FOLDER\JENKINS_BUILD\My-Project
Couldn't set project path to: C:\Program
(Filename: C:\buildslave\unity\build\Runtime/Utilities/Argv.cpp Line: 226)
Aborting batchmode due to failure:
Couldn't set project path to: C:\Program
FATAL: Unity3d command line execution failed with status 1
Build step 'Invoke Unity3d Editor' marked build as failure
Finished: FAILURE
can you help me?
i new in jenkins and unity