Version: Unity 6.7 Beta (6000.7)
LanguageEnglish
  • C#

SceneImportContext

struct in UnityEditor.Build.Content

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Additional import context for scene assets used in AssetPostprocessor.OnProcessScene.

Unity passes an instance of this struct to AssetPostprocessor.OnProcessScene for every scene it processes during a Player build or in Play mode.

Additional resources: AssetPostprocessor.OnProcessScene, ProcessSceneMode

The following example logs a message when a scene is processed while Awake has been called before the callback.

 using UnityEditor;
 using UnityEditor.Build.Content;
 using UnityEngine;
 using UnityEngine.SceneManagement;

class MySceneProcessor : AssetPostprocessor { public void OnProcessScene(Scene scene, SceneImportContext sceneContext) { if (sceneContext.awakeDidRun) Debug.Log($"Processing {scene.name} with Awake already called."); } }

Properties

Property Description
awakeDidRun Indicates whether Unity has already called Awake on the objects in the scene.
loadingReason Indicates the reason for which the scene is being loaded.