mirror of
https://github.com/halpz/re3.git
synced 2025-07-17 18:18:13 +00:00
neo pipelines
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);
|
||||
|
@ -8,6 +8,7 @@
|
||||
#include "Camera.h"
|
||||
#include "VisibilityPlugins.h"
|
||||
#include "World.h"
|
||||
#include "custompipes.h"
|
||||
|
||||
#define FADE_DISTANCE 20.0f
|
||||
|
||||
@ -146,6 +147,10 @@ CVisibilityPlugins::RenderFadingEntities(void)
|
||||
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());
|
||||
#ifdef FIX_BUGS
|
||||
if(mi->GetModelType() == MITYPE_SIMPLE && mi->m_noZwrite)
|
||||
|
Reference in New Issue
Block a user