mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-01 03:25:55 +00:00
implemented most of streamed collisions and big buildings
This commit is contained in:
parent
b44df26d3e
commit
fd462c9b55
|
@ -87,10 +87,8 @@ struct CStoredCollPoly
|
||||||
|
|
||||||
struct CColModel
|
struct CColModel
|
||||||
{
|
{
|
||||||
#ifndef MIAMI
|
|
||||||
CColSphere boundingSphere;
|
CColSphere boundingSphere;
|
||||||
CColBox boundingBox;
|
CColBox boundingBox;
|
||||||
#endif
|
|
||||||
int16 numSpheres;
|
int16 numSpheres;
|
||||||
int16 numLines;
|
int16 numLines;
|
||||||
int16 numBoxes;
|
int16 numBoxes;
|
||||||
|
|
|
@ -130,6 +130,7 @@ CSimpleModelInfo::GetAtomicFromDistance(float dist)
|
||||||
return nil;
|
return nil;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef MIAMI
|
||||||
RpAtomic*
|
RpAtomic*
|
||||||
CSimpleModelInfo::GetFirstAtomicFromDistance(float dist)
|
CSimpleModelInfo::GetFirstAtomicFromDistance(float dist)
|
||||||
{
|
{
|
||||||
|
@ -137,6 +138,7 @@ CSimpleModelInfo::GetFirstAtomicFromDistance(float dist)
|
||||||
return m_atomics[0];
|
return m_atomics[0];
|
||||||
return nil;
|
return nil;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void
|
void
|
||||||
CSimpleModelInfo::FindRelatedModel(void)
|
CSimpleModelInfo::FindRelatedModel(void)
|
||||||
|
|
Loading…
Reference in a new issue