From ac598aa102eb7838cd5c301eb671b01dc388ea17 Mon Sep 17 00:00:00 2001 From: shen Date: Sun, 9 Jun 2024 12:02:48 +0300 Subject: [PATCH] Added Y object rotation --- .../gamemodes/beatrun/gamemode/sh/BuildMode.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/beatrun/gamemodes/beatrun/gamemode/sh/BuildMode.lua b/beatrun/gamemodes/beatrun/gamemode/sh/BuildMode.lua index 4a5ca32..4dd680c 100644 --- a/beatrun/gamemodes/beatrun/gamemode/sh/BuildMode.lua +++ b/beatrun/gamemodes/beatrun/gamemode/sh/BuildMode.lua @@ -1081,6 +1081,20 @@ if CLIENT then LocalPlayer():EmitSound("buttonrollover.wav") end, + [KEY_H] = 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() + 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_F] = function() if CurTime() < BuildModePlaceDelay then return end