From df67c73d81c6ce9f6922b7fad23d69232b9e19fd Mon Sep 17 00:00:00 2001 From: Sergeanur Date: Mon, 31 Aug 2020 21:21:50 +0300 Subject: vars rename --- src/objects/Stinger.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/objects') diff --git a/src/objects/Stinger.cpp b/src/objects/Stinger.cpp index 7a84edac..61424885 100644 --- a/src/objects/Stinger.cpp +++ b/src/objects/Stinger.cpp @@ -188,14 +188,14 @@ CStinger::Process() // no break case STINGERSTATE_STATE1: if (m_nSpikeState != STINGERSTATE_STATE1 || CTimer::GetTimeInMilliseconds() <= m_nTimeOfDeploy + 2500) { - float something = (CTimer::GetTimeInMilliseconds() - m_nTimeOfDeploy) / 2500.0f; + float progress = (CTimer::GetTimeInMilliseconds() - m_nTimeOfDeploy) / 2500.0f; if (m_nSpikeState != STINGERSTATE_STATE1) - something = 1.0f - something; + progress = 1.0f - progress; - float radangle = something * ARRAY_SIZE(m_vPositions); - float angle1 = m_fMax_Z + DEGTORAD(radangle); - float angle2 = m_fMax_Z - DEGTORAD(radangle); - int pos = clamp(radangle, 0, ARRAY_SIZE(m_vPositions)-1); + float degangle = progress * ARRAY_SIZE(m_vPositions); + float angle1 = m_fMax_Z + DEGTORAD(degangle); + float angle2 = m_fMax_Z - DEGTORAD(degangle); + int pos = clamp(degangle, 0, ARRAY_SIZE(m_vPositions)-1); CVector2D pos2d = m_vPositions[pos]; CVector pos3d = m_vPos; -- cgit v1.2.3