Used to indicate the type of error that occurred while loading a mod
Namespace:
UMod
Assembly:
UMod (in UMod.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax Members
| Member name | Value | Description |
---|
| NoError | 0 |
The mod loaded without error.
|
| UnknownError | 1 |
An unknown error occurred during loading that prevented the mod from runnning.
|
| LocalStreamingFailed | 2 |
An error occirred while attempting to retrieve files from the local file system, Usually an IO excption.
|
| RemoteStreamingFailed | 3 |
An error occurred while attempting to retrieve files from a remote server.
|
| InvalidMod | 4 |
The mod failed to load because required files are missing or corrupt.
|
| InvalidPath | 5 |
The mod failed to load because the specified path does not point to a valid mod folder structre.
|
| ModNotFound | 6 |
The mod file coould not be found at the path specified.
|
| MissingResources | 7 |
The mod could not be loaded because it is missing the essential resource file.
|
| MissingReferences | 8 |
One or more of the mod references could not be loaded.
|
| UModVersionIncompatibility | 9 |
The mod could not be loaded because it was created with a newer version of the uMod Build Engine.
|
| UModGameIncompatibility | 10 |
The mod could not be loaded because it targets a different game.
|
| UnityVersionIncompatibility | 11 |
The mod could not be loaded because it was created with a different version of Unity.
|
| SecurityError | 12 |
The mod could not be loaded because it breaches the security policy imposed by the host.
|
See Also