-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.lua
56 lines (56 loc) · 1.28 KB
/
settings.lua
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
data:extend({
{
type = "int-setting",
name = "ghost-scanner-update-interval",
order = "aa",
setting_type = "runtime-global",
default_value = 120,
minimum_value = 1,
maximum_value = 216000, -- 1h
},
{
type = "int-setting",
name = "ghost-scanner-max-results",
order = "ab",
setting_type = "runtime-global",
default_value = 1000,
minimum_value = 0,
},
{
type = "bool-setting",
name = "ghost-scanner-show-hidden",
order = "ac",
setting_type = "runtime-global",
default_value = false,
},
{
type = "bool-setting",
name = "ghost-scanner-negative-output",
order = "ba",
setting_type = "runtime-global",
default_value = false,
},
{
type = "bool-setting",
name = "ghost-scanner-round2stack",
order = "bb",
setting_type = "runtime-global",
default_value = false,
},
{
type = "bool-setting",
name = "ghost-scanner-cell-count",
order = "bc",
setting_type = "runtime-global",
default_value = true,
},
{
type = "double-setting",
name = "ghost-scanner-area-reduction",
order = "bd",
setting_type = "runtime-global",
default_value = 0.001,
minimum_value = 0.0,
maximum_value = 0.1,
},
})