-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActionSpeedConfigSettings.cs
35 lines (29 loc) · 1.38 KB
/
ActionSpeedConfigSettings.cs
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
using ModSettings;
namespace ActionSpeedConfig {
internal class ActionSpeedConfigSettings : JsonModSettings {
internal static ActionSpeedConfigSettings Instance;
[Name("Container search")]
[Description("Determines how long the circle animation takes. (seconds)")]
[Slider(0f, 10f, 21)]
public float containerSearchTime = 3f;
[Name("Eating/Drinking")]
[Description("Determines how long the circle animation takes. (seconds)")]
[Slider(0f, 10f, 21)]
public float eatTime = 3f;
[Name("Carcas harvest/quarter action time multiplier")]
[Description("Determines how long the circle animation takes. (seconds)")]
[Slider(0f, 10f, 21)]
public float carcasHarvestTime = 5f;
[Name("Fishing/Clearing ice")]
[Description("Determines how long the circle animation takes. (seconds)")]
[Slider(0f, 10f, 21)]
public float fishingTime = 5f;
[Name("Harvest plants")]
[Description("Determines how long the circle animation takes. (seconds)")]
[Slider(0f, 10f, 21)]
public float plantHarvestTime = 3f;
//[Name("Instantly search empty containers")]
//[Description("Empty containers are searched instantly regardless of multiplier.")]
//public bool instantlySearchEmpty = true;
}
}