InvalidModFolderReason Enumeration |
A value indicating why a folder path is an invalid mod assets path.
Namespace:
UMod.BuildEngine
Assembly:
UMod-BuildEngine (in UMod-BuildEngine.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public enum InvalidModFolderReason
Members
| Member name | Value | Description |
---|
| None | 0 |
The path is valid (No error).
|
| EmptyPath | 1 |
The specified mod folder path is either null or empty.
|
| NotFound | 2 |
The specified mod folder could not be found.
|
| IsAssets | 3 |
The specified mod folder is set to the 'Assets' folder. This is not allowed.
|
| NotChildOfAssets | 4 |
The specified folder does no point to a valid 'Assets' sub folder.
|
See Also