-
Notifications
You must be signed in to change notification settings - Fork 3
/
modsettings.json
64 lines (64 loc) · 2.33 KB
/
modsettings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"Version": "1",
"Sections": [
{
"Name": "FogDensity",
"Description": "Set Fog Thickness",
"IsAdvanced": false,
"Keys": [
{
"Min": 1,
"Max": 10,
"Value": 1,
"Name": "densitySetting",
"Description": "Makes fog thicker",
"$version": "v1",
"$type": "DaggerfallWorkshop.Game.Utility.ModSupport.ModSettings.SliderIntKey"
}
],
"$version": "v1"
},
{
"Name": "SnowSizeAndNumberOfParticles",
"Description": "Options for the pixel snow particle replacement",
"IsAdvanced": false,
"Keys": [
{
"Value": false,
"Name": "ActivatePixelSnow",
"Description": "Turn the pixel snow replacement on or off",
"$version": "v1",
"$type": "DaggerfallWorkshop.Game.Utility.ModSupport.ModSettings.ToggleKey"
},
{
"Min": 100,
"Max": 800,
"Value": 100,
"Name": "MinParticleSize",
"Description": "Minimum snow particle size",
"$version": "v1",
"$type": "DaggerfallWorkshop.Game.Utility.ModSupport.ModSettings.SliderIntKey"
},
{
"Min": 100,
"Max": 800,
"Value": 300,
"Name": "MaxParticleSize",
"Description": "Maximum snow particle size",
"$version": "v1",
"$type": "DaggerfallWorkshop.Game.Utility.ModSupport.ModSettings.SliderIntKey"
},
{
"Min": 15,
"Max": 20,
"Value": 20,
"Name": "MaxParticles",
"Description": "Maximum number of snow flake particles (multiplied by 1000)",
"$version": "v1",
"$type": "DaggerfallWorkshop.Game.Utility.ModSupport.ModSettings.SliderIntKey"
}
],
"$version": "v1"
}
]
}