Class PluginLoadOrderAttribute
This attribute allows for specifying initialization and deinitialization order for plugins.
Inheritance
System.Object
PluginLoadOrderAttribute
Namespace: FlaxEngine
Assembly: FlaxEngine.CSharp.dll
Syntax
public class PluginLoadOrderAttribute : Attribute
Constructors
PluginLoadOrderAttribute()
Declaration
public PluginLoadOrderAttribute()
Fields
DeinitializeBefore
The plugin type to deinitialize this plugin before.
Declaration
public Type DeinitializeBefore
Field Value
System.Type
|
InitializeAfter
The plugin type to initialize this plugin after.
Declaration
public Type InitializeAfter
Field Value
System.Type
|