mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-14 17:00:34 +00:00
Merge remote-tracking branch 'upstream/master' into cw
This commit is contained in:
commit
f2596b3759
14 changed files with 380 additions and 312 deletions
|
@ -587,7 +587,7 @@ C3dMarkers::PlaceMarker(uint32 identifier, uint16 type, CVector &pos, float size
|
|||
pMarker->m_Color.alpha = (float)a * 0.4f * someSin + a;
|
||||
}
|
||||
if (pMarker->m_nRotateRate) {
|
||||
RwV3d pos = pMarker->m_Matrix.m_matrix.pos;
|
||||
CVector pos = pMarker->m_Matrix.GetPosition();
|
||||
pMarker->m_Matrix.RotateZ(DEGTORAD(pMarker->m_nRotateRate * CTimer::GetTimeStep()));
|
||||
pMarker->m_Matrix.GetPosition() = pos;
|
||||
}
|
||||
|
|
|
@ -358,7 +358,11 @@ CSprite2d::SetMaskVertices(int n, float *positions)
|
|||
RwIm2DVertexSetScreenZ(&maVertices[i], screenz);
|
||||
RwIm2DVertexSetCameraZ(&maVertices[i], z);
|
||||
RwIm2DVertexSetRecipCameraZ(&maVertices[i], recipz);
|
||||
RwIm2DVertexSetIntRGBA(&maVertices[i], 255, 255, 255, 255); // 0, 0, 0, 0 on PC
|
||||
#if !defined(GTA_PS2_STUFF) && defined(RWLIBS)
|
||||
RwIm2DVertexSetIntRGBA(&maVertices[i], 0, 0, 0, 0);
|
||||
#else
|
||||
RwIm2DVertexSetIntRGBA(&maVertices[i], 255, 255, 255, 255);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue