-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSettings.cs
More file actions
30 lines (24 loc) · 1.11 KB
/
Settings.cs
File metadata and controls
30 lines (24 loc) · 1.11 KB
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
using System;
namespace InternalWindMachinePlugin
{
public class InternalWindMachineSettings
{
public bool Use3DWind { get; set; } = false;
public bool EnableCenter { get; set; } = true;
public bool EnableLeft { get; set; } = false;
public bool EnableRight { get; set; } = false;
public string PropCenter { get; set; } = "ShakeItWindPlugin.OutputCenter";
public string PropLeft { get; set; } = "ShakeItWindPlugin.OutputLeft";
public string PropRight { get; set; } = "ShakeItWindPlugin.OutputRight";
public string SensorDirectory { get; set; } = @"InternalWindMachineOutput";
// Individual Fan Power Overrides
public bool OverL { get; set; } = false;
public bool OverC { get; set; } = false;
public bool OverR { get; set; } = false;
public double PowerL { get; set; } = 100.0;
public double PowerC { get; set; } = 100.0;
public double PowerR { get; set; } = 100.0;
public bool EnableUpdateChecks { get; set; } = true;
public bool EnableUpdateNotifications { get; set; } = true;
}
}