Files
Paradise/code/_globalvars/lists/keybindings_lists.dm
GDN 599f645ccb adds the ability to keybind click() triggers (#23395)
* adds the ability to keybind click() triggers

* Update code/datums/keybindings/click_keybindings.dm

Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com>

* Update code/_onclick/click.dm

* final fixes

* runtime fix

---------

Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com>
2024-02-21 22:49:28 +00:00

24 lines
815 B
Plaintext

GLOBAL_LIST_EMPTY(keybindings)
GLOBAL_LIST_INIT(keybindings_groups, list(
"Movement" = KB_CATEGORY_MOVEMENT,
"Communication" = KB_CATEGORY_COMMUNICATION,
"Living" = KB_CATEGORY_LIVING,
"General" = KB_CATEGORY_MOB,
"General Emote" = KB_CATEGORY_EMOTE_GENERIC,
"Human" = KB_CATEGORY_HUMAN,
"Human Emotes" = KB_CATEGORY_EMOTE_HUMAN,
"Carbon" = KB_CATEGORY_CARBON,
"Carbon Emote" = KB_CATEGORY_EMOTE_CARBON,
"Cyborg" = KB_CATEGORY_ROBOT,
"AI" = KB_CATEGORY_AI,
"Silicon/IPC Emote" = KB_CATEGORY_EMOTE_SILICON,
"Animal Emote" = KB_CATEGORY_EMOTE_ANIMAL,
"Brain Emote" = KB_CATEGORY_EMOTE_BRAIN,
"Alien Emote" = KB_CATEGORY_EMOTE_ALIEN,
"Click Keybinds" = KB_CATEGORY_CLICK,
"Admin" = KB_CATEGORY_ADMIN,
"Other" = KB_CATEGORY_UNSORTED,
"Custom Emotes (Character-based)" = KB_CATEGORY_EMOTE_CUSTOM,
))