mirror of
https://github.com/halpz/re3.git
synced 2025-07-22 11:09:43 +00:00
bit more CAutomobile
This commit is contained in:
@ -117,6 +117,15 @@ public:
|
||||
bool IsObject(void) { return m_type == ENTITY_TYPE_OBJECT; }
|
||||
bool IsDummy(void) { return m_type == ENTITY_TYPE_DUMMY; }
|
||||
|
||||
RpAtomic *GetAtomic(void) {
|
||||
assert(RwObjectGetType(m_rwObject) == rpATOMIC);
|
||||
return (RpAtomic*)m_rwObject;
|
||||
}
|
||||
RpClump *GetClump(void) {
|
||||
assert(RwObjectGetType(m_rwObject) == rpCLUMP);
|
||||
return (RpClump*)m_rwObject;
|
||||
}
|
||||
|
||||
void GetBoundCentre(CVector &out);
|
||||
CVector GetBoundCentre(void) { CVector v; GetBoundCentre(v); return v; }
|
||||
float GetBoundRadius(void) { return CModelInfo::GetModelInfo(m_modelIndex)->GetColModel()->boundingSphere.radius; }
|
||||
|
Reference in New Issue
Block a user