Version: 2017.3 (switch to 2017.4)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

IProcessScene.OnProcessScene

public void OnProcessScene(SceneManagement.Scene scene);

Parameters

scene The current Scene being processed.

Description

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

using UnityEditor;
using UnityEditor.Build;
using UnityEngine;

class MyCustomBuildProcessor : IProcessScene { public int callbackOrder { get { return 0; } } public void OnProcessScene(UnityEngine.SceneManagement.Scene scene) { Debug.Log("MyCustomBuildProcessor.OnProcessScene " + scene.name); } }

Did you find this page useful? Please give it a rating: