Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision |
runtimeinitializeonload [2021/08/30 06:08] – 72.28.7.108 | runtimeinitializeonload [2025/01/15 04:35] (current) – external edit 127.0.0.1 |
---|
Methods with RuntimeInitializeLoadType.AfterSceneLoad, or RuntimeInitializeLoadType.BeforeSceneLoad will only be called for the **first** scene in a run of the application, not every scene. ((Tested in Unity 2019.4.19f1, in editor and in Android build)) | Methods with RuntimeInitializeLoadType.AfterSceneLoad, or RuntimeInitializeLoadType.BeforeSceneLoad will only be called for the **first** scene in a run of the application, not every scene. ((Tested in Unity 2019.4.19f1, in editor and in Android build)) |
| |
| Another important thing is that the method should be static! |
---- | ---- |
| |
===== Other Nuanced Info ===== | ===== Other Nuanced Info ===== |
* If you create a GameObject and attach a MonoBehaviour to it in "BeforeSceneLoad", or another early LoadType, the Awake function of that MonoBehavior WILL be called at the point of creating the GameObject. In other words, the Awake will be called earlier than the Awakes of GameObjects in Loaded. //(discovered in 2021.1.15f1)// | |
| If you create a GameObject and attach a MonoBehaviour to it in "BeforeSceneLoad", or another early LoadType, the Awake function of that MonoBehavior WILL be called at the point of creating the GameObject. In other words, the Awake will be called earlier than the Awakes of GameObjects in Loaded((tested in 2021.1.15f1)). |
Example: | Example: |
<code cs> | <code cs> |
} | } |
</code> | </code> |
| |
---- | ---- |
| |
* [[https://docs.unity3d.com/ScriptReference/SceneManagement.SceneManager-sceneLoaded.html|'SceneManager.sceneLoaded']] event subscribers will also be called BEFORE "AfterSceneLoad". By the name of the event, you may assume that the event is called AFTER the scene was loaded, but it appears to be called just before. //(discovered in 2021.1.15f1)// | [[https://docs.unity3d.com/ScriptReference/SceneManagement.SceneManager-sceneLoaded.html|SceneManager.sceneLoaded]] event subscribers will be called before ''AfterSceneLoad''. By the name of the event, you might assume that the event is called **after** the scene was loaded, but it appears to be called just before. ((tested in 2021.1.15f1)) |