Click or drag to resize

ModLoadError Enumeration

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
C#
public enum ModLoadError
Members
  Member nameValueDescription
NoError0 The mod loaded without error.
UnknownError1 An unknown error occurred during loading that prevented the mod from runnning.
LocalStreamingFailed2 An error occirred while attempting to retrieve files from the local file system, Usually an IO excption.
RemoteStreamingFailed3 An error occurred while attempting to retrieve files from a remote server.
InvalidMod4 The mod failed to load because required files are missing or corrupt.
InvalidPath5 The mod failed to load because the specified path does not point to a valid mod folder structre.
ModNotFound6 The mod file coould not be found at the path specified.
MissingResources7 The mod could not be loaded because it is missing the essential resource file.
MissingReferences8 One or more of the mod references could not be loaded.
UModVersionIncompatibility9 The mod could not be loaded because it was created with a newer version of the uMod Build Engine.
UModGameIncompatibility10 The mod could not be loaded because it targets a different game.
UnityVersionIncompatibility11 The mod could not be loaded because it was created with a different version of Unity.
SecurityError12 The mod could not be loaded because it breaches the security policy imposed by the host.
See Also