mirror of
https://github.com/JonnyBro/beatrun.git
synced 2024-12-27 20:43:02 +05:00
well okay
This commit is contained in:
parent
16fea4a2b2
commit
1bce92840d
1 changed files with 11 additions and 0 deletions
|
@ -1726,6 +1726,17 @@ local function JumpThink()
|
|||
ang[1] = 0
|
||||
ang[3] = 0
|
||||
|
||||
if vel_l > 0 and string.StartsWith(BodyAnimString, "water_") then -- somehow that worked? i did literally nothing
|
||||
local water_eye_ang = ply:EyeAngles()
|
||||
water_eye_ang[1] = 0
|
||||
water_eye_ang[3] = 0
|
||||
local water_ang = LerpAngle(math.min(lerpspeed * FrameTime() * speed, 1), BodyAnim:GetAngles(), water_eye_ang)
|
||||
|
||||
BodyAnim:SetAngles(water_ang)
|
||||
|
||||
return
|
||||
end
|
||||
|
||||
if vel_l > 0 or BodyAnimString == "walktostandleft" or ply:Crouching() or IsValid(ply:GetBalanceEntity()) then
|
||||
if newang:Forward():Dot(ang:Forward()) > -0.25 then
|
||||
ply.OrigEyeAng = newang
|
||||
|
|
Loading…
Reference in a new issue