Interface IDelayedInitializationModule
Adds Initialize and Shutdown methods to modules for when editing starts and stops
Namespace: UnityEditor.Experimental.EditorVR
Syntax
public interface IDelayedInitializationModule : IModule
Properties
initializationOrder
Used to sort delayed initialization modules before calling Initialize
Declaration
int initializationOrder { get; }
Property Value
Type | Description |
---|---|
Int32 |
shutdownOrder
Used to sort delayed initialization modules before calling Shutdown
Declaration
int shutdownOrder { get; }
Property Value
Type | Description |
---|---|
Int32 |
Methods
Initialize()
Called when editing starts
Declaration
void Initialize()
Shutdown()
Called when editing stops
Declaration
void Shutdown()