mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-05 18:36:33 +05:00
Added Y object rotation
This commit is contained in:
parent
aae72dfbc5
commit
ac598aa102
1 changed files with 14 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue