-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsettings.lua
More file actions
41 lines (41 loc) · 947 Bytes
/
settings.lua
File metadata and controls
41 lines (41 loc) · 947 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
36
37
38
39
40
41
data:extend({
{
type = "int-setting",
name = "inv_sensor_update_interval",
order = "aa",
setting_type = "runtime-global",
default_value = 10,
minimum_value = 1,
maximum_value = 216000, -- 1h
},
{
type = "int-setting",
name = "inv_sensor_find_entity_interval",
order = "ab",
setting_type = "runtime-global",
default_value = 120,
minimum_value = 1,
maximum_value = 216000, -- 1h
},
{
type = "bool-setting",
name = "inv_sensor_read_grid",
order = "ba",
setting_type = "runtime-global",
default_value = true,
},
{
type = "double-setting",
name = "inv_sensor_BBox_offset",
order = "ca",
setting_type = "runtime-global",
default_value = 0.2,
},
{
type = "double-setting",
name = "inv_sensor_BBox_range",
order = "cb",
setting_type = "runtime-global",
default_value = 1.5,
},
})