Skip to content

Commit

Permalink
Tweak threshold and damage easing
Browse files Browse the repository at this point in the history
  • Loading branch information
legokidlogan committed Sep 30, 2024
1 parent 8ca919d commit 7492603
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/weapons/cfc_graviton_gun/shared.lua
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ SWEP.Primary = {
GravitonAccelerationMult = 0.75, -- Take a portion of the victim's initial horizontal velocity and apply it as a downwards acceleration on top of normal gravity.
GravitonAccelerationAdd = 300, -- Flat bonus acceleration to apply downwards.
GravitonFallDamageDiv = 1900, -- Divides fall speed before going into the ease func.
GravitonFallDamageEase = math.ease.InQuint, -- Easing function to apply to fall damage.
GravitonFallDamageEase = math.ease.InQuart, -- Easing function to apply to fall damage.
GravitonFallDamageMult = 80, -- Multiplies fall damage after ease func.
GravitonFallDamageSpeedThreshdold = 1400, -- Speed at which fall damage starts to be applied.
GravitonFallDamageSpeedThreshdold = 1200, -- Speed at which fall damage starts to be applied.
GravitonTrailInterval = 0.1,
GravitonTrailLength = 2,
GravitonTrailSpeed = 1,
Expand Down

0 comments on commit 7492603

Please sign in to comment.