This commit is contained in:
Christian Semmler 2024-03-01 12:06:33 -05:00
parent 0ef77c2883
commit 0785a127ac
2 changed files with 3 additions and 3 deletions

View File

@ -89,9 +89,9 @@ void OrientableROI::UpdateWorldData(const Matrix4& p_transform)
}
// FUNCTION: LEGO1 0x100a5a30
void OrientableROI::FUN_100a5a30(const Vector3& p_vector)
void OrientableROI::FUN_100a5a30(const Vector3& p_world_velocity)
{
m_world_velocity = p_vector;
m_world_velocity = p_world_velocity;
}
// FUNCTION: LEGO1 0x100a5a50

View File

@ -36,7 +36,7 @@ class OrientableROI : public ROI {
void FUN_100a46b0(Matrix4& p_transform);
void WrappedVTable0x24(const Matrix4& p_transform);
void FUN_100a58f0(const Matrix4& p_transform);
void FUN_100a5a30(const Vector3& p_vector);
void FUN_100a5a30(const Vector3& p_world_velocity);
const MxMatrix& GetLocal2World() const { return m_local2world; }
const float* GetWorldPosition() const { return m_local2world[3]; }