Enum MenuAttribute.LoadEvents
- Namespace
- Nautilus.Options.Attributes
- Assembly
- Nautilus.dll
Specifies after which events the config file should be loaded from disk automatically.
[Flags]
public enum MenuAttribute.LoadEvents : byte
- Extension Methods
Fields
MenuOpened = 2
- Load when the menu is opened by the player.Useful for allowing players to edit their config files manually without restarting the game for their changes to take effect.
MenuRegistered = 1
- Load when the menu is registered to Nautilus via RegisterModOptions<T>().In normal usage, this option is equivalent to loading when the game is launched.
None = 0
- Never automatically load.
Remarks
This enumeration has a FlagsAttribute that allows a bitwise combination of its member values.