發(fā)布構(gòu)建-構(gòu)建播放器管線
構(gòu)建播放器管線
在構(gòu)建播放器時(shí),有時(shí)可能希望以某種方式修改構(gòu)建的播放器。例如,可能希望添加自定義圖標(biāo)、在播放器旁邊復(fù)制一些文檔或構(gòu)建安裝程序。您可以通過編輯器腳本實(shí)現(xiàn)此目的,使用?BuildPipeline.BuildPlayer?來運(yùn)行構(gòu)建,接著使用所需的任何后期處理代碼:
// C# 示例。?
using UnityEditor;?
using System.Diagnostics;?
public class ScriptBatch
{
? ?
[MenuItem("MyTools/Windows Build With Postprocess")]
? ?
public static void BuildGame (){
? ? ? ?
// 獲取文件名。
? ? ? ?
string path = EditorUtility.SaveFolderPanel("Choose Location of Built Game", "", "");
? ? ? ?
string[] levels = new string[] {"Assets/Scene1.unity", "Assets/Scene2.unity"};
? // 構(gòu)建播放器。
? ? ? ?
BuildPipeline.BuildPlayer(levels, path +"/BuiltGame.exe", BuildTarget.StandaloneWindows, BuildOptions.None);
? ? ? ?
// 將文件從項(xiàng)目文件夾復(fù)制到構(gòu)建文件夾,與構(gòu)建的游戲放在一起。
? ? ? FileUtil.CopyFileOrDirectory("Assets/Templates/Readme.txt", path + "Readme.txt");// 運(yùn)行游戲(System.Diagnostics 中的 Process 類)。
? ? ? ?Process proc = new Process();
? ? ? ?
proc.StartInfo.FileName = path +"/BuiltGame.exe";
? ? ? ?
proc.Start();
}
}
PostProcessBuild 屬性
還可以使用?PostProcessBuildAttribute?的 postprocessOrder 參數(shù)來定義構(gòu)建方法的執(zhí)行順序,并使用 Process 類從這些方法調(diào)用外部腳本,如上一部分所示。此參數(shù)用于將構(gòu)建方法從低到高排序,可為其分配任何負(fù)值或正值。