forked from MagmaMcFry/Factorissimo2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.lua
More file actions
65 lines (60 loc) · 1.21 KB
/
settings.lua
File metadata and controls
65 lines (60 loc) · 1.21 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
data:extend({
-- Startup
{
type = "bool-setting",
name = "Factorissimo2-easy-research",
setting_type = "startup",
default_value = false,
order = "a-a"
},
{
type = "int-setting",
name = "Factorissimo2-power-batching",
setting_type = "startup",
minimum_value = 1,
default_value = 1,
maximum_value = 60,
order = "a-b"
},
-- Global
{
type = "bool-setting",
name = "Factorissimo2-free-recursion",
setting_type = "runtime-global",
default_value = false,
order = "a-a",
},
{
type = "bool-setting",
name = "Factorissimo2-hide-recursion",
setting_type = "runtime-global",
default_value = false,
order = "a-b",
},
-- Per user
-- {
-- type = "bool-setting",
-- name = "Factorissimo2-preview-enabled",
-- setting_type = "runtime-per-user",
-- default_value = true,
-- order = "a-a",
-- },
{
type = "int-setting",
name = "Factorissimo2-preview-size",
setting_type = "runtime-per-user",
minimum_value = 50,
default_value = 300,
maximum_value = 1000,
order = "a-b",
},
{
type = "double-setting",
name = "Factorissimo2-preview-zoom",
setting_type = "runtime-per-user",
minimum_value = 0.2,
default_value = 1,
maximum_value = 2,
order = "a-c",
},
})