Version: 2022.3
언어: 한국어
public void OnProcessScene (SceneManagement.Scene scene, Build.Reporting.BuildReport report);

파라미터

scene The current Scene being processed.
report A 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.

This callback is invoked during Player and AssetBundle builds, and also as a scene is reloaded while entering Editor playmode. BuildPipeline.isBuildingPlayer can be used to determine in which context the callback is being called.

See Also: BuildPipeline.BuildPlayer, BuildPipeline.BuildAssetBundles.

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); } }