runtimeinitializeonload
This is an old revision of the document!
RuntimeInitializeOnLoadMethod
The documentation is not correct about this function running after awake. It does by default, but not if you specify a load type:
The order of callbacks is: 1)
- SubsystemRegistration
- AfterAssembliesLoad
- BeforeSplashScreen2)
- BeforeSceneLoad
- Unity MonoBehaviour.Awake() runs here
- AfterSceneLoad, Default
Providing no load type defaults to RuntimeInitializeLoadType.AfterSceneLoad, running the function after Awake.
Other versions that have been verified to also use this exact order:
- 2021.1.12f1 (editor only)
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 on Unity 2019.4.19f1, Other LoadTypes are untested but would be presumed to be the same.
runtimeinitializeonload.1624384574.txt.gz · Last modified: 2025/01/15 04:35 (external edit)