Enumeration used to specifiy the type of content that is included in a mod.
The enum is used as a bitmask value where one or more values can be combined to specifiy multiple values.
Namespace:
UMod.Shared
Assembly:
UMod-Shared (in UMod-Shared.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax [FlagsAttribute]
public enum ModContent
Members
| Member name | Value | Description |
---|
| Scripts | 1 |
Indicates that the mod includes scripted content.
|
| Assets | 2 |
Indicates that the mod includes asset content in the form of prefabs.
|
| Scenes | 4 |
Indicates that the mod includes complete scenes.
|
See Also