-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcontrols.lua
47 lines (37 loc) · 1.28 KB
/
controls.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
-- ^ctrl !alt +shift (the order is important when stacking)
return {
["escape"] = {"quit", "editor.select.clear"},
["a"] = "left",
["d"] = "right",
["s"] = "down",
["w"] = "up",
["space"] = {"jump"},--, "editor.tool.entity"},
["lshift"] = {"run", "editor.line", "editor.select.add"},
["rshift"] = {"run", "editor.line", "editor.select.add"},
["r"] = {"closePortals", "editor.tool.paint"},
["delete"] = "editor.delete",
["^z"] = "editor.undo",
["^y"] = "editor.redo",
["^c"] = "editor.copy",
["^x"] = "editor.cut",
["^v"] = "editor.paste",
["^s"] = "editor.save",
["lctrl"] = {"editor.select.subtract", "editor.pipette", "editor.mouseWheelScale"},
["rctrl"] = {"editor.select.subtract", "editor.pipette"},
["lalt"] = "editor.wand.global",
["ralt"] = "editor.wand.global",
["return"] = "editor.select.unFloat",
["e"] = "editor.tool.erase",
["3"] = "editor.tool.move",
["q"] = "editor.tool.select",
["g"] = "editor.tool.wand",
["f"] = "editor.tool.fill",
["t"] = "editor.tool.stamp",
["up"] = "editor.up",
["right"] = "editor.right",
["down"] = "editor.down",
["left"] = "editor.left",
["p"] = "debug.star",
["pause"] = "debug.pausePlay",
["#"] = "debug.frameAdvance"
}