mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-06 10:56:34 +05:00
Change speedometer to 2D
This commit is contained in:
parent
aff1fa6265
commit
2bbba952a8
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ function CourseHUD()
|
||||||
end
|
end
|
||||||
|
|
||||||
if GetConVar("Beatrun_HUDHidden") and not GetConVar("Beatrun_HUDHidden"):GetBool() and not BuildMode and hook.Run("BeatrunDrawHUD") ~= false and not ply.InReplay then
|
if GetConVar("Beatrun_HUDHidden") and not GetConVar("Beatrun_HUDHidden"):GetBool() and not BuildMode and hook.Run("BeatrunDrawHUD") ~= false and not ply.InReplay then
|
||||||
local speed = math.Round(ply:GetVelocity():Length() * 0.06858125)
|
local speed = math.Round(ply:GetVelocity():Length2D() * 0.06858125) -- 2D speed, ME-style (:Length2D() instead of just :Length())
|
||||||
|
|
||||||
if speed < 10 then
|
if speed < 10 then
|
||||||
speed = "0" .. speed
|
speed = "0" .. speed
|
||||||
|
|
Loading…
Add table
Reference in a new issue