mirror of
https://github.com/halpz/re3.git
synced 2025-07-17 09:28:16 +00:00
neo pipelines; postfx fix
This commit is contained in:
@ -1,5 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
extern RpLight *pAmbient;
|
||||
extern RpLight *pDirect;
|
||||
extern RpLight *pExtraDirectionals[4];
|
||||
extern int LightStrengths[4];
|
||||
extern int NumExtraDirLightsInWorld;
|
||||
|
||||
void SetLightsWithTimeOfDayColour(RpWorld *);
|
||||
RpWorld *LightsCreate(RpWorld *world);
|
||||
void LightsDestroy(RpWorld *world);
|
||||
|
@ -9,6 +9,7 @@
|
||||
#include "Camera.h"
|
||||
#include "VisibilityPlugins.h"
|
||||
#include "World.h"
|
||||
#include "custompipes.h"
|
||||
|
||||
//--MIAMI: file done
|
||||
|
||||
@ -193,6 +194,10 @@ CVisibilityPlugins::RenderFadingEntities(CLinkList<AlphaObjectInfo> &list)
|
||||
CEntity *e = node->item.entity;
|
||||
if(e->m_rwObject == nil)
|
||||
continue;
|
||||
#ifdef EXTENDED_PIPELINES
|
||||
if(CustomPipes::bRenderingEnvMap && (e->IsPed() || e->IsVehicle()))
|
||||
continue;
|
||||
#endif
|
||||
mi = (CSimpleModelInfo *)CModelInfo::GetModelInfo(e->GetModelIndex());
|
||||
if(mi->GetModelType() == MITYPE_SIMPLE && mi->m_noZwrite)
|
||||
RwRenderStateSet(rwRENDERSTATEZWRITEENABLE, FALSE);
|
||||
|
Reference in New Issue
Block a user