mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-18 07:39:23 +00:00
Adding getters and setters for type and status
This commit is contained in:
parent
cf5a404f6b
commit
7d758f3a9f
41 changed files with 256 additions and 249 deletions
|
@ -77,7 +77,7 @@ CHeli::CHeli(int32 id, uint8 CreatedBy)
|
|||
m_fHeliDustZ[i] = -50.0f;
|
||||
|
||||
m_nPoliceShoutTimer = CTimer::GetTimeInMilliseconds();
|
||||
m_status = STATUS_HELI;
|
||||
SetStatus(STATUS_HELI);
|
||||
m_bTestRight = true;
|
||||
m_fTargetOffset = 0.0f;
|
||||
m_fSearchLightX = m_fSearchLightY = 0.0f;
|
||||
|
@ -810,7 +810,7 @@ GenerateHeli(bool catalina)
|
|||
if(catalina)
|
||||
heli->GetMatrix().SetRotateZOnly(DEGTORAD(270.0f)); // game actually uses 3.14 here
|
||||
|
||||
heli->m_status = STATUS_ABANDONED;
|
||||
heli->SetStatus(STATUS_ABANDONED);
|
||||
|
||||
int id = -1;
|
||||
bool found = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue