-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.lua
More file actions
30 lines (29 loc) · 740 Bytes
/
settings.lua
File metadata and controls
30 lines (29 loc) · 740 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
data:extend{
{
type = "int-setting",
name = "pc-cycle-per-tick",
setting_type = "startup",
default_value = 128,
minimum_value = 16,
maximum_value = 4096
}, {
type = "int-setting",
name = "pc-power-usage",
setting_type = "startup",
default_value = 10,
minimum_value = 0,
maximum_value = 10000
}, {
type = "int-setting",
name = "pc-memory-block-size",
setting_type = "startup",
default_value = 24,
minimum_value = 16,
maximum_value = 128
}, {
type = "bool-setting",
name = "pc-debug",
setting_type = "runtime-per-user",
default_value = true
}
}