mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 06:53:11 +00:00
vars rename
This commit is contained in:
parent
024f0a5027
commit
df67c73d81
1 changed files with 6 additions and 6 deletions
|
@ -188,14 +188,14 @@ CStinger::Process()
|
||||||
// no break
|
// no break
|
||||||
case STINGERSTATE_STATE1:
|
case STINGERSTATE_STATE1:
|
||||||
if (m_nSpikeState != STINGERSTATE_STATE1 || CTimer::GetTimeInMilliseconds() <= m_nTimeOfDeploy + 2500) {
|
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)
|
if (m_nSpikeState != STINGERSTATE_STATE1)
|
||||||
something = 1.0f - something;
|
progress = 1.0f - progress;
|
||||||
|
|
||||||
float radangle = something * ARRAY_SIZE(m_vPositions);
|
float degangle = progress * ARRAY_SIZE(m_vPositions);
|
||||||
float angle1 = m_fMax_Z + DEGTORAD(radangle);
|
float angle1 = m_fMax_Z + DEGTORAD(degangle);
|
||||||
float angle2 = m_fMax_Z - DEGTORAD(radangle);
|
float angle2 = m_fMax_Z - DEGTORAD(degangle);
|
||||||
int pos = clamp(radangle, 0, ARRAY_SIZE(m_vPositions)-1);
|
int pos = clamp(degangle, 0, ARRAY_SIZE(m_vPositions)-1);
|
||||||
|
|
||||||
CVector2D pos2d = m_vPositions[pos];
|
CVector2D pos2d = m_vPositions[pos];
|
||||||
CVector pos3d = m_vPos;
|
CVector pos3d = m_vPos;
|
||||||
|
|
Loading…
Reference in a new issue