mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2025-01-11 07:54:10 +00:00
little emergecy fix for shadows with librw
This commit is contained in:
parent
7d8ffa9ebd
commit
658f94f155
|
@ -2788,14 +2788,12 @@ CPed::SetModelIndex(uint32 mi)
|
||||||
// This is a mistake by R*, velocity is CVector, whereas m_vecAnimMoveDelta is CVector2D.
|
// This is a mistake by R*, velocity is CVector, whereas m_vecAnimMoveDelta is CVector2D.
|
||||||
(*RPANIMBLENDCLUMPDATA(m_rwObject))->velocity = (CVector*) &m_vecAnimMoveDelta;
|
(*RPANIMBLENDCLUMPDATA(m_rwObject))->velocity = (CVector*) &m_vecAnimMoveDelta;
|
||||||
|
|
||||||
#ifdef PED_SKIN
|
|
||||||
if(modelInfo->GetHitColModel() == nil)
|
if(modelInfo->GetHitColModel() == nil)
|
||||||
modelInfo->CreateHitColModelSkinned(GetClump());
|
modelInfo->CreateHitColModelSkinned(GetClump());
|
||||||
|
|
||||||
if (IsClumpSkinned(GetClump())) // condition isn't there in VC
|
UpdateRpHAnim();
|
||||||
UpdateRpHAnim();
|
|
||||||
#endif
|
#ifndef LIBRW
|
||||||
#if 1
|
|
||||||
if (!m_pRTShadow)
|
if (!m_pRTShadow)
|
||||||
{
|
{
|
||||||
m_pRTShadow = new CCutsceneShadow;
|
m_pRTShadow = new CCutsceneShadow;
|
||||||
|
|
|
@ -853,7 +853,7 @@ CShadows::StoreShadowForPed(CPed *pPed, float fDisplacementX, float fDisplacemen
|
||||||
{
|
{
|
||||||
if ( CTimeCycle::GetShadowStrength() != 0 )
|
if ( CTimeCycle::GetShadowStrength() != 0 )
|
||||||
{
|
{
|
||||||
#if 1
|
#ifndef LIBRW
|
||||||
CCutsceneShadow *pShadow = pPed->m_pRTShadow;
|
CCutsceneShadow *pShadow = pPed->m_pRTShadow;
|
||||||
|
|
||||||
if (pShadow)
|
if (pShadow)
|
||||||
|
|
Loading…
Reference in a new issue