mirror of
https://github.com/HaodongMo/ARC-9.git
synced 2025-03-04 03:02:58 -05:00
sway: detect strafe based on velocity not keypress (smoother now)
This commit is contained in:
parent
36b5062f0c
commit
4aa26043c9
@ -245,7 +245,8 @@ local function ArcticBreadBob(self, pos, ang)
|
||||
mag = mag * Lerp(ts, 1, 2)
|
||||
step = 10
|
||||
|
||||
local sidemove = ((owner:KeyDown(IN_MOVERIGHT) and 1 or 0) - (owner:KeyDown(IN_MOVELEFT) and 1 or 0)) * 8 * (1.1-sightamount)
|
||||
-- local sidemove = ((owner:KeyDown(IN_MOVERIGHT) and 1 or 0) - (owner:KeyDown(IN_MOVELEFT) and 1 or 0)) * 8 * (1.1-sightamount)
|
||||
local sidemove = (owner:GetVelocity():Dot(ply:EyeAngles():Right()) / ply:GetMaxSpeed()) * 4 * (1.5-sightamount)
|
||||
smoothsidemove = Lerp(math.Clamp(ft*8, 0, 1), smoothsidemove, sidemove)
|
||||
|
||||
local crouchmult = 1
|
||||
@ -320,7 +321,8 @@ local function ArcticBreadDarsuBob(self, pos, ang)
|
||||
mag = mag * Lerp(ts, 1, 2)
|
||||
step = 9.25
|
||||
|
||||
local sidemove = ((owner:KeyDown(IN_MOVERIGHT) and 1 or 0) - (owner:KeyDown(IN_MOVELEFT) and 1 or 0)) * 3 * (1.5-sightamount)
|
||||
local sidemove = (owner:GetVelocity():Dot(ply:EyeAngles():Right()) / ply:GetMaxSpeed()) * 4 * (1.5-sightamount)
|
||||
-- local sidemove = ((owner:KeyDown(IN_MOVERIGHT) and 1 or 0) - (owner:KeyDown(IN_MOVELEFT) and 1 or 0)) * 3 * (1.5-sightamount)
|
||||
smoothsidemove = Lerp(math.Clamp(ft*8, 0, 1), smoothsidemove, sidemove)
|
||||
|
||||
local crouchmult = 1
|
||||
@ -412,7 +414,8 @@ local function DarsuBob(self, pos, ang)
|
||||
local xm, ym, zm, pm, yym, rm = settings[1], settings[2], settings[3], settings[4], settings[5], settings[6]
|
||||
local xms, yms, zms, pms, yyms, rms = settings2[1], settings2[2], settings2[3], settings2[4], settings2[5], settings2[6]
|
||||
|
||||
local sidemove = ((owner:KeyDown(IN_MOVERIGHT) and 1 or 0) - (owner:KeyDown(IN_MOVELEFT) and 1 or 0)) * 3 * (1.1-sightamount)
|
||||
-- local sidemove = ((owner:KeyDown(IN_MOVERIGHT) and 1 or 0) - (owner:KeyDown(IN_MOVELEFT) and 1 or 0)) * 3 * (1.1-sightamount)
|
||||
local sidemove = (owner:GetVelocity():Dot(ply:EyeAngles():Right()) / ply:GetMaxSpeed()) * 4 * (1.5-sightamount)
|
||||
smoothsidemove = Lerp(math.Clamp(ft*8, 0, 1), smoothsidemove, sidemove)
|
||||
|
||||
local crouchmult = (owner:Crouching() and not owner:IsSprinting()) and 2.5*(1.3-sightamount) or 1
|
||||
|
Loading…
Reference in New Issue
Block a user