-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdata.lua
54 lines (51 loc) · 1.2 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
53
54
require("prototypes.sprites")
require("prototypes.fonts")
require("prototypes.styles")
data:extend({{
type = "custom-input",
name = "ltnt-toggle-hotkey",
key_sequence = "CONTROL + SHIFT + E",
consuming = "none",
}})
data:extend({{
type = "shortcut",
name = "ltnt-toggle-shortcut",
order = "a[ltnt-toggle-shortcut]",
action = "lua",
localised_name = {"shortcut.ltnt-toggle"},
style = "default",
technology_to_unlock = "logistic-train-network",
toggleable = true,
associated_control_input = "ltnt-toggle-hotkey",
icon =
{
filename = "__LTN_Tracker__/graphics/shortcut_icon_32.png",
priority = "extra-high-no-scale",
size = 32,
scale = 1,
flags = {"icon"}
},
disabled_icon =
{
filename = "__LTN_Tracker__/graphics/shortcut_icon_32_white.png",
priority = "extra-high-no-scale",
size = 32,
scale = 1,
flags = {"icon"}
},
small_icon =
{
filename = "__LTN_Tracker__/graphics/shortcut_icon_24.png",
size = 24,
scale = 1,
flags = {"icon"}
},
disabled_small_icon =
{
filename = "__LTN_Tracker__/graphics/shortcut_icon_24_white.png",
priority = "extra-high-no-scale",
size = 24,
scale = 1,
flags = {"icon"}
},
}})