mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-10 21:29:16 +00:00
small CWorld fixes
This commit is contained in:
parent
c74c7ce1d4
commit
ccf6232039
|
@ -1937,11 +1937,11 @@ CWorld::Process(void)
|
||||||
if(csObj->m_rwObject && RwObjectGetType(csObj->m_rwObject) == rpCLUMP &&
|
if(csObj->m_rwObject && RwObjectGetType(csObj->m_rwObject) == rpCLUMP &&
|
||||||
RpAnimBlendClumpGetFirstAssociation(csObj->GetClump())) {
|
RpAnimBlendClumpGetFirstAssociation(csObj->GetClump())) {
|
||||||
if (csObj->IsObject())
|
if (csObj->IsObject())
|
||||||
RpAnimBlendClumpUpdateAnimations(csObj->GetClump(), 0.02f * CTimer::GetTimeStepNonClipped());
|
RpAnimBlendClumpUpdateAnimations(csObj->GetClump(), CTimer::GetTimeStepNonClippedInSeconds());
|
||||||
else {
|
else {
|
||||||
if (!csObj->bOffscreen)
|
if (!csObj->bOffscreen)
|
||||||
csObj->bOffscreen = !csObj->GetIsOnScreen();
|
csObj->bOffscreen = !csObj->GetIsOnScreen();
|
||||||
RpAnimBlendClumpUpdateAnimations(csObj->GetClump(), 0.02f * CTimer::GetTimeStep(), !csObj->bOffscreen);
|
RpAnimBlendClumpUpdateAnimations(csObj->GetClump(), CTimer::GetTimeStepInSeconds(), !csObj->bOffscreen);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
csObj->ProcessControl();
|
csObj->ProcessControl();
|
||||||
|
@ -1958,11 +1958,11 @@ CWorld::Process(void)
|
||||||
if(!movingEnt->bRemoveFromWorld && movingEnt->m_rwObject && RwObjectGetType(movingEnt->m_rwObject) == rpCLUMP &&
|
if(!movingEnt->bRemoveFromWorld && movingEnt->m_rwObject && RwObjectGetType(movingEnt->m_rwObject) == rpCLUMP &&
|
||||||
RpAnimBlendClumpGetFirstAssociation(movingEnt->GetClump())) {
|
RpAnimBlendClumpGetFirstAssociation(movingEnt->GetClump())) {
|
||||||
if (movingEnt->IsObject())
|
if (movingEnt->IsObject())
|
||||||
RpAnimBlendClumpUpdateAnimations(movingEnt->GetClump(), 0.02f * CTimer::GetTimeStepNonClipped());
|
RpAnimBlendClumpUpdateAnimations(movingEnt->GetClump(), CTimer::GetTimeStepNonClippedInSeconds());
|
||||||
else {
|
else {
|
||||||
if (!movingEnt->bOffscreen)
|
if (!movingEnt->bOffscreen)
|
||||||
movingEnt->bOffscreen = !movingEnt->GetIsOnScreen();
|
movingEnt->bOffscreen = !movingEnt->GetIsOnScreen();
|
||||||
RpAnimBlendClumpUpdateAnimations(movingEnt->GetClump(), 0.02f * CTimer::GetTimeStep(), !movingEnt->bOffscreen);
|
RpAnimBlendClumpUpdateAnimations(movingEnt->GetClump(), CTimer::GetTimeStepInSeconds(), !movingEnt->bOffscreen);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue