forked from Baystation12/Baystation12
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Что этот PR делает Достал инпут из модуля, нахуя? Не знаю :clueless: Починил передачу кейкодов с тгуи в бйонд, теперь можно бегать и тыкать интерфейс одновременно Подчистил пару лишних биндов плюс повешал некоторые с пары (Передать на V) ## Изображения изменений <details> <summary>Видео</summary> https://github.com/ss220club/WyccerraBay220/assets/69762909/07ddcf25-3b5b-4297-ab6d-71f7d9bd7233 </details> ## Тестирование Всё работает, вроде ничего не сломал ## Changelog :cl: add: Чейнджлог всё равно не работает, пока что. /:cl:
- Loading branch information
Showing
36 changed files
with
492 additions
and
875 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
mods/ssinput/code/_defines.dm → code/datums/keybindings/_defines.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 3 additions & 7 deletions
10
mods/ssinput/code/keybindings/_keybinding.dm → code/datums/keybindings/_keybinding.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,21 @@ | ||
/datum/keybinding | ||
var/list/hotkey_keys | ||
var/list/classic_keys | ||
var/name | ||
var/full_name | ||
var/description = "" | ||
var/category = CATEGORY_MISC | ||
|
||
var/category = KEYBIND_CATEGORY_MISC | ||
var/list/hotkey_keys | ||
var/list/classic_keys | ||
|
||
/datum/keybinding/New() | ||
// Default keys to the master "hotkey_keys" | ||
if(LAZYLEN(hotkey_keys) && !LAZYLEN(classic_keys)) | ||
classic_keys = hotkey_keys.Copy() | ||
|
||
|
||
/datum/keybinding/proc/down(client/user) | ||
return FALSE | ||
|
||
|
||
/datum/keybinding/proc/up(client/user) | ||
return FALSE | ||
|
||
|
||
/datum/keybinding/proc/can_use(client/user) | ||
return TRUE |
Oops, something went wrong.