Version: 2018.2
public void OnProcessScene (SceneManagement.Scene scene, Build.Reporting.BuildReport report);

パラメーター

sceneThe current Scene being processed.
reportA report containing information about the current build. When this callback is invoked for scene loading during Editor playmode, this parameter will be null.

説明

Implement this function to receive a callback for each Scene during the build.

using UnityEditor;
using UnityEditor.Build;
using UnityEditor.Build.Reporting;
using UnityEngine;

class MyCustomBuildProcessor : IProcessSceneWithReport { public int callbackOrder { get { return 0; } } public void OnProcessScene(UnityEngine.SceneManagement.Scene scene, BuildReport report) { Debug.Log("MyCustomBuildProcessor.OnProcessScene " + scene.name); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961