forked from Void-Works/Void-Works
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.lua
53 lines (48 loc) · 1.44 KB
/
settings.lua
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
--[[
Copyright (c) 2019 Void Works
See LICENSE in the project directory for license information.
Most of the credit for this mod goes to authors below whose code was compiled:
Original "Fluid Void" mod by Rseding91 - redesigned by Nibuja05 (control code used for fluid voiding)
"High Pressure Pipe" mod by kendfrey (code used for void pipe creation and tinting)
"Void Chest +" mod by Optera (code used for void chest creation and function)
--]]
data:extend(
{
{
type = "double-setting",
name = "tint-r",
setting_type = "startup",
minimum_value = 0,
maximum_value = 1,
default_value = 0.1,
order = "aa",
},
{
type = "double-setting",
name = "tint-g",
setting_type = "startup",
minimum_value = 0,
maximum_value = 1,
default_value = 0,
order = "ab",
},
{
type = "double-setting",
name = "tint-b",
setting_type = "startup",
minimum_value = 0,
maximum_value = 1,
default_value = 0.75,
order = "ac",
},
{
type = "double-setting",
name = "slots",
setting_type = "startup",
minimum_value = 1,
maximum_value = 10,
default_value = 5,
order = "ba",
},
}
)