-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.lua
More file actions
36 lines (36 loc) · 1.03 KB
/
settings.lua
File metadata and controls
36 lines (36 loc) · 1.03 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
31
32
33
34
35
36
data:extend({
{
type = "string-setting",
name = "zy-unipipe-required-research",
setting_type = "startup",
default_value = "chemical",
allowed_values = { "automation", "logistic", "chemical", "production", "utility", "space" }
},
{
type = "string-setting",
name = "zy-unipipe-crafting-cost",
setting_type = "startup",
default_value = "easy",
allowed_values = { "easy", "medium", "hard" }
},
{
type = "bool-setting",
name = "zy-unipipe-per-surface",
setting_type = "startup",
default_value = true
},
{
type = "bool-setting",
name = "zy-unipipe-factorissimo-compat",
setting_type = "startup",
default_value = true,
description = "When enabled, Unipipe networks treat Factorissimo building interiors as part of their parent surface, even with per-surface mode enabled."
},
{
type = "string-setting",
name = "zy-unipipe-autofilter-mode",
setting_type = "runtime-global",
default_value = "any",
allowed_values = { "any", "unipipe", "disabled" }
}
})