forked from CodeGreen0386/belt-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.lua
52 lines (52 loc) · 1.26 KB
/
data.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
data:extend{{
type = "custom-input",
name = "bv-highlight-belt",
key_sequence = "SHIFT + H",
action = "lua",
order = "b",
},{
type = "custom-input",
name = "bv-highlight-ghost",
key_sequence = "H",
action = "lua",
order = "a",
},{
type = "custom-input",
name = "bv-toggle-hover",
key_sequence = "",
action = "lua",
order = "c",
},{
type = "shortcut",
name = "bv-toggle-hover",
action = "lua",
localised_name = {"shortcut.bv-toggle-hover"},
associated_control_input = "bv-toggle-hover",
toggleable = true,
icon = {
filename = "__belt-visualizer__/graphics/toggle-hover-x32.png",
priority = "extra-high-no-scale",
size = 32,
scale = 0.5,
mipmap_count = 1,
flags = {"gui-icon"},
},
small_icon =
{
filename = "__belt-visualizer__/graphics/toggle-hover-x24.png",
priority = "extra-high-no-scale",
size = 24,
scale = 0.5,
mipmap_count = 1,
flags = {"gui-icon"}
},
disabled_small_icon =
{
filename = "__belt-visualizer__/graphics/toggle-hover-x24-white.png",
priority = "extra-high-no-scale",
size = 24,
scale = 0.5,
mipmap_count = 1,
flags = {"gui-icon"}
}
}}