-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.lua
More file actions
35 lines (35 loc) · 817 Bytes
/
settings.lua
File metadata and controls
35 lines (35 loc) · 817 Bytes
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
data:extend({
{
type = "int-setting",
name = "ScanningRadar_radius",
setting_type = "runtime-global",
minimum_value = 16,
maximum_value = 1000,
default_value = 576,
order = "1"
},
{
type = "int-setting",
name = "ScanningRadar_speed",
setting_type = "runtime-global",
minimum_value = 0,
maximum_value = 10,
default_value = 5,
order = "2"
},
{
type = "string-setting",
name = "ScanningRadar_direction",
setting_type = "runtime-global",
default_value = "Counterclockwise",
allowed_values = { "Counterclockwise", "Clockwise" },
order = "3"
},
{
type = "bool-setting",
name = "ScanningRadar_power",
setting_type = "runtime-global",
default_value = true,
order = "4"
}
})