mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-27 03:24:15 +01:00
random fixes
This commit is contained in:
parent
85c44715ea
commit
95920d54f2
@ -262,7 +262,7 @@ CStreaming::Init(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
CStreaming::Init();
|
CStreaming::Init2();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -362,7 +362,7 @@ CRenderer::SetupEntityVisibility(CEntity *ent)
|
|||||||
ent->bNoBrightHeadLights = false;
|
ent->bNoBrightHeadLights = false;
|
||||||
}
|
}
|
||||||
return VIS_OFFSCREEN;
|
return VIS_OFFSCREEN;
|
||||||
}else{
|
}
|
||||||
// All sorts of Clumps
|
// All sorts of Clumps
|
||||||
if(ent->m_rwObject == nil || !ent->bIsVisible)
|
if(ent->m_rwObject == nil || !ent->bIsVisible)
|
||||||
return VIS_INVISIBLE;
|
return VIS_INVISIBLE;
|
||||||
@ -373,10 +373,8 @@ CRenderer::SetupEntityVisibility(CEntity *ent)
|
|||||||
CVisibilityPlugins::InsertEntityIntoSortedList(ent, dist);
|
CVisibilityPlugins::InsertEntityIntoSortedList(ent, dist);
|
||||||
ent->bDistanceFade = false;
|
ent->bDistanceFade = false;
|
||||||
return VIS_INVISIBLE;
|
return VIS_INVISIBLE;
|
||||||
}else
|
|
||||||
return VIS_VISIBLE;
|
|
||||||
}
|
}
|
||||||
return VIS_INVISIBLE;
|
return VIS_VISIBLE;
|
||||||
}
|
}
|
||||||
if(ent->IsObject() &&
|
if(ent->IsObject() &&
|
||||||
((CObject*)ent)->ObjectCreatedBy == TEMP_OBJECT){
|
((CObject*)ent)->ObjectCreatedBy == TEMP_OBJECT){
|
||||||
@ -1196,8 +1194,10 @@ CRenderer::IsVehicleCullZoneVisible(CEntity *ent)
|
|||||||
void
|
void
|
||||||
CRenderer::RemoveVehiclePedLights(CEntity *ent, bool reset)
|
CRenderer::RemoveVehiclePedLights(CEntity *ent, bool reset)
|
||||||
{
|
{
|
||||||
if(ent->bRenderScorched)
|
if(ent->bRenderScorched){
|
||||||
WorldReplaceScorchedLightsWithNormal(Scene.world);
|
WorldReplaceScorchedLightsWithNormal(Scene.world);
|
||||||
|
return;
|
||||||
|
}
|
||||||
CPointLights::RemoveLightsAffectingObject();
|
CPointLights::RemoveLightsAffectingObject();
|
||||||
if(reset)
|
if(reset)
|
||||||
ReSetAmbientAndDirectionalColours();
|
ReSetAmbientAndDirectionalColours();
|
||||||
|
Loading…
Reference in New Issue
Block a user