您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
62 行
1.9 KiB
62 行
1.9 KiB
using System.IO;
|
|
using UnityEngine;
|
|
using UnityEditor.SceneManagement;
|
|
using UnityEditor;
|
|
|
|
namespace UnityEditor.Experimental.Rendering
|
|
{
|
|
public class TestFrameworkCustomBuild
|
|
{
|
|
private static readonly string s_TestSceneFolder = "/GraphicsTests/Scenes";
|
|
private static readonly string s_BuildFolder = "/TestScenesBuild";
|
|
|
|
[MenuItem("RenderPipeline/TestFramework/Build-iOS")]
|
|
public static void BuildiOS()
|
|
{
|
|
TestFrameworkCustomBuild builder = new TestFrameworkCustomBuild();
|
|
builder.Build(BuildTarget.iOS, BuildOptions.AcceptExternalModificationsToPlayer);
|
|
}
|
|
|
|
public void Build(BuildTarget target, BuildOptions options)
|
|
{
|
|
var absoluteScenesPath = Application.dataPath + s_TestSceneFolder;
|
|
string[] levels = System.IO.Directory.GetFiles(absoluteScenesPath, "*.unity", System.IO.SearchOption.AllDirectories);
|
|
CheckAndAddGotoNextSceneBehavior(levels);
|
|
|
|
string savePath = EditorUtility.SaveFolderPanel("Select folder to save project", "", "");
|
|
BuildPipeline.BuildPlayer(levels, savePath + s_BuildFolder, target, options);
|
|
}
|
|
|
|
private void CheckAndAddGotoNextSceneBehavior(string[] levels)
|
|
{
|
|
for (int i = 0; i < levels.Length; ++i)
|
|
{
|
|
string levelPath = levels[i];
|
|
var scene = EditorSceneManager.OpenScene(levelPath);
|
|
GameObject[] objects = scene.GetRootGameObjects();
|
|
bool componentFound = false;
|
|
|
|
foreach (GameObject go in objects)
|
|
{
|
|
GotoNextScene component = go.GetComponent<GotoNextScene>();
|
|
if (component != null)
|
|
{
|
|
component.m_NextSceneIndex = (i + 1) % levels.Length;
|
|
componentFound = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!componentFound)
|
|
{
|
|
GameObject gotoNextScene = new GameObject("GotoNextScene");
|
|
GotoNextScene component = gotoNextScene.AddComponent<GotoNextScene>();
|
|
component.m_NextSceneIndex = (i + 1) % levels.Length;
|
|
}
|
|
|
|
EditorSceneManager.SaveScene(scene);
|
|
EditorSceneManager.UnloadSceneAsync(scene);
|
|
}
|
|
}
|
|
}
|
|
}
|