13 lines
323 B
AutoHotkey
13 lines
323 B
AutoHotkey
|
; Converts additional mouse buttons to
|
||
|
XButton2::MButton
|
||
|
|
||
|
; Godot requires Left Shift to be held down to pan camera
|
||
|
; thus, send it as a separate keypress, and wait for mouse to be released
|
||
|
XButton1::
|
||
|
Send {LShift down}{MButton down}
|
||
|
KeyWait XButton1
|
||
|
Send {MButton up}{LShift up}
|
||
|
|
||
|
; Rebind Windows + Tab to Save
|
||
|
; #Tab::^s
|