forked from raiguard/PipeVisualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.lua
More file actions
36 lines (36 loc) · 773 Bytes
/
settings.lua
File metadata and controls
36 lines (36 loc) · 773 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
data:extend({
{
type = "double-setting",
name = "pv-overlay-opacity",
setting_type = "runtime-per-user",
default_value = 0.4,
minimum_value = 0,
maximum_value = 1,
},
{
type = "int-setting",
name = "pv-entities-per-tick",
setting_type = "runtime-global",
default_value = 30,
minimum_value = 1,
},
{
type = "bool-setting",
name = "pv-color-pumps",
setting_type = "runtime-per-user",
default_value = true,
},
{
type = "bool-setting",
name = "pv-allow-ultrawide",
setting_type = "runtime-per-user",
default_value = false,
},
{
type = "double-setting",
name = "pv-overlay-scale",
setting_type = "runtime-per-user",
default_value = 1.0,
minimum_value = 1,
},
})