Files
BongaTheProto 8c42034e40 only 16 pixels??? Bruh?????
Reinstates the original pixelshift range and also makes the viewport shifting a config so people don't get vertigo from the sliding sprites
2023-05-19 23:35:56 -05:00

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