Changes keys from "H", "J" to "N", "M"

This commit is contained in:
shen 2024-06-09 12:06:58 +03:00
parent ac598aa102
commit 575adf67f8

View file

@ -1081,14 +1081,14 @@ if CLIENT then
LocalPlayer():EmitSound("buttonrollover.wav")
end,
[KEY_H] = function()
[KEY_N] = function()
local mult = input.IsKeyDown(KEY_LCONTROL) and 0.06666666666666667 or 1
BuildModeAngle:RotateAroundAxis(Vector(0, 0, 1), 15 * mult)
LocalPlayer():EmitSound("buttonrollover.wav")
end,
[KEY_J] = function()
[KEY_M] = function()
local mult = input.IsKeyDown(KEY_LCONTROL) and 0.06666666666666667 or 1
BuildModeAngle:RotateAroundAxis(Vector(0, 0, 1), -15 * mult)