mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2024-11-22 05:22:32 +01:00
Cargens placed in interiors tie to area 13 (visible everywhere)
This commit is contained in:
parent
e272cce1f3
commit
a66876f85f
@ -48,6 +48,15 @@ RpAtomic* ShadowCameraRenderCB(RpAtomic* pAtomic)
|
||||
return pAtomic;
|
||||
}
|
||||
|
||||
void CEntity::SetPositionAndAreaCode( CVector position )
|
||||
{
|
||||
SetCoords( position );
|
||||
if ( position.z >= 950.0f )
|
||||
{
|
||||
m_areaCode = 13;
|
||||
}
|
||||
}
|
||||
|
||||
void CObject::Render()
|
||||
{
|
||||
if ( m_bDoNotRender || !m_pRwObject )
|
||||
|
@ -199,6 +199,8 @@ public:
|
||||
uint8_t GetStatus() const { return nStatus; }
|
||||
|
||||
bool IsVisible();
|
||||
|
||||
void SetPositionAndAreaCode( CVector position );
|
||||
};
|
||||
|
||||
class NOVMT CPhysical : public CEntity
|
||||
|
@ -3978,6 +3978,10 @@ void Patch_SA_10()
|
||||
Patch( 0x5B9868 + 2, &pAudioUtilsFrequency );
|
||||
InjectHook( 0x5B9886, AudioUtilsGetStartTime );
|
||||
InjectHook( 0x4D9E80, AudioUtilsGetCurrentTimeInMs, PATCH_JUMP );
|
||||
|
||||
|
||||
// Car generators placed in interiors visible everywhere
|
||||
InjectHook( 0x6F3B30, &CEntity::SetPositionAndAreaCode );
|
||||
}
|
||||
|
||||
void Patch_SA_11()
|
||||
|
Loading…
Reference in New Issue
Block a user