Havok: Fix hkpMotion::getMassInv() return type

This commit is contained in:
Léo Lam 2022-01-14 01:07:39 +01:00
parent 56e8fea33c
commit fa2c98ddd5
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ public:
};
inline hkSimdReal hkpMotion::getMassInv() const {
return m_inertiaAndMassInv(3);
return m_inertiaAndMassInv.getW();
}
inline const hkVector4& hkpMotion::getCenterOfMassLocal() const {