mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-13 07:04:09 +00:00
CClouds; disabled object clipping for SA cam
This commit is contained in:
parent
4b566c26a3
commit
40829b5242
14 changed files with 158 additions and 123 deletions
|
@ -1542,7 +1542,7 @@ void CParticle::Render()
|
|||
particle->m_fSize * 63.0f,
|
||||
particle->m_Color,
|
||||
particle->m_nColorIntensity,
|
||||
(float)particle->m_nRotation, //DEGTORAD((float)particle->m_nRotation) ps2
|
||||
DEGTORAD(particle->m_nRotation),
|
||||
particle->m_nAlpha);
|
||||
}
|
||||
else
|
||||
|
@ -1582,7 +1582,7 @@ void CParticle::Render()
|
|||
particle->m_Color.blue,
|
||||
particle->m_nColorIntensity,
|
||||
1.0f / coors.z,
|
||||
float(particle->m_nRotation), // DEGTORAD((float)particle->m_nRotation) ps2
|
||||
DEGTORAD(particle->m_nRotation),
|
||||
particle->m_nAlpha);
|
||||
}
|
||||
else if ( psystem->Flags & SCREEN_TRAIL )
|
||||
|
@ -1635,7 +1635,7 @@ void CParticle::Render()
|
|||
particle->m_Color.blue,
|
||||
particle->m_nColorIntensity,
|
||||
1.0f / coors.z,
|
||||
fRotation,
|
||||
DEGTORAD(fRotation),
|
||||
particle->m_nAlpha);
|
||||
|
||||
particle->m_vecScreenPosition = coors;
|
||||
|
@ -1684,7 +1684,7 @@ void CParticle::Render()
|
|||
particle->m_Color.blue,
|
||||
particle->m_nColorIntensity,
|
||||
1.0f / coors.z,
|
||||
fRotation,
|
||||
DEGTORAD(fRotation),
|
||||
particle->m_nAlpha);
|
||||
}
|
||||
else if ( psystem->Flags & VERT_TRAIL )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue