Class OnGameInitializeLaterAttribute
The function will be called when game initialize but after all [OnGameInitialize] functions already called
Examples
[OnGameInitializeLater]
internal static void ExampleFunction () { }
Constructors
OnGameInitializeLaterAttribute(int)
The function will be called when game initialize but after all [OnGameInitialize] functions already called
Declaration
public OnGameInitializeLaterAttribute(int order = 0)
Parameters
Type | Name | Description |
---|---|---|
int | order | Function with smaller order will be called earlier |
Examples
[OnGameInitializeLater]
internal static void ExampleFunction () { }