mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-21 03:36:47 +01:00
Reinstates the original pixelshift range and also makes the viewport shifting a config so people don't get vertigo from the sliding sprites
24 lines
575 B
Plaintext
24 lines
575 B
Plaintext
/datum/keybinding/mob/tilt_right
|
|
hotkey_keys = list("AltCtrlEast", "AltCtrlD")
|
|
name = "pixel_tilt_east"
|
|
full_name = "Pixel Tilt Right"
|
|
description = ""
|
|
category = CATEGORY_MOVEMENT
|
|
|
|
/datum/keybinding/mob/tilt_right/down(client/user)
|
|
var/mob/M = user.mob
|
|
M.tilt_right()
|
|
return TRUE
|
|
|
|
/datum/keybinding/mob/tilt_left
|
|
hotkey_keys = list("AltCtrlWest", "AltCtrlA")
|
|
name = "pixel_tilt_west"
|
|
full_name = "Pixel Tilt Left"
|
|
description = ""
|
|
category = CATEGORY_MOVEMENT
|
|
|
|
/datum/keybinding/mob/tilt_left/down(client/user)
|
|
var/mob/M = user.mob
|
|
M.tilt_left()
|
|
return TRUE
|