forked from Anders142536/FacAutoScreenshot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.lua
More file actions
38 lines (37 loc) · 1 KB
/
data.lua
File metadata and controls
38 lines (37 loc) · 1 KB
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
require("prototypes.sprites")
require("prototypes.styles")
data:extend {
{
type = "custom-input",
name = "FAS-selection-toggle-shortcut",
key_sequence = "SHIFT + ALT + S"
},
{
type = "custom-input",
name = "FAS-delete-area-shortcut",
key_sequence = "SHIFT + ALT + D"
},
{
type = "custom-input",
name = "FAS-toggle-GUI",
key_sequence = ""
},
{
type = "selection-tool",
name = "FAS-selection-tool",
icon = "__FacAutoScreenshot_Updated__/graphics/FAS-24px.png",
icon_size = 24,
select = {
border_color = { r = 1, g = 0.5, b = 0 },
cursor_box_type = "entity",
mode = "nothing"
},
alt_select = {
border_color = { r = 0, g = 0, b = 0 },
cursor_box_type = "entity",
mode = "nothing"
},
stack_size = 1,
flags = { "hide-from-bonus-gui", "only-in-cursor", "not-stackable" },
}
}