Class Preset
A group of settings values with meta properties.
Implements
Namespace: DaggerfallWorkshop.Game.Utility.ModSupport.ModSettings
Assembly: Assembly-CSharp.dll
Syntax
[fsObject("v1", new Type[]{})]
public class Preset : IPreset
Constructors
| Improve this Doc View SourcePreset()
Declaration
public Preset()
Fields
| Improve this Doc View SourceIsLocal
True if can be edited from gui.
Declaration
[fsIgnore]
public bool IsLocal
Field Value
Type | Description |
---|---|
Boolean |
Properties
| Improve this Doc View SourceAuthor
Optional field (for imported presets).
Declaration
public string Author { get; set; }
Property Value
Type | Description |
---|---|
String |
Description
Short description shown on GUI.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
String |
SettingsVersion
Version of target settings (not version of preset!)
Declaration
public string SettingsVersion { get; set; }
Property Value
Type | Description |
---|---|
String |
Title
Title (does not correspond to filename).
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
String |
Values
Declaration
public Dictionary<string, Dictionary<string, string>> Values { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<String, Dictionary<String, String>> |