-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.lua
More file actions
37 lines (37 loc) · 982 Bytes
/
data.lua
File metadata and controls
37 lines (37 loc) · 982 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
37
data:extend{
--Custom hotkeys
{
type = "custom-input",
name = "fill4me-keybind-reload",
key_sequence = "CONTROL + R",
consuming = "game-only",
},
{
type = "custom-input",
name = "fill4me-keybind-enable",
key_sequence = "CONTROL + SHIFT + R",
consuming = "none",
},
{
type = "shortcut",
name = "fill4me-shortcut-toggle",
order = "fill4me",
action = "lua",
toggleable = "true",
localised_name = {"fill4me.gui.enable_button"},
icon = {
filename = "__Fill4Me-fixed__/images/fill4me-32.png",
priority = "extra-high",
size = 32,
scale = 1,
flags = {"icon"}
},
small_icon = {
filename = "__Fill4Me-fixed__/images/fill4me-24.png",
priority = "extra-high",
size = 24,
scale = 1,
flags = {"icon"}
},
}
}