Files
kiwistation/code/datums/keybinding/movement.dm
T
Couls 971ef6a416 Custom movement hotkeys and restore macros for T, O and M (#47626)
* Custom movement hotkeys and restore macros for T, O and M

* stray comma

* update movement keys on SSinput initialize

* use cardinals
2019-11-07 18:07:17 -05:00

28 lines
604 B
Plaintext

/datum/keybinding/movement
category = CATEGORY_MOVEMENT
weight = WEIGHT_HIGHEST
/datum/keybinding/movement/north
key = "W"
name = "North"
full_name = "Move North"
description = "Moves your character north"
/datum/keybinding/movement/south
key = "S"
name = "South"
full_name = "Move South"
description = "Moves your character south"
/datum/keybinding/movement/west
key = "A"
name = "West"
full_name = "Move West"
description = "Moves your character left"
/datum/keybinding/movement/east
key = "D"
name = "East"
full_name = "Move East"
description = "Moves your character east"