iOS Support (#113)

undefined
This commit is contained in:
Brent
2024-01-22 09:22:41 -06:00
committed by GitHub
parent 90a15340b1
commit afe875e4fa
109 changed files with 6523 additions and 1105 deletions

View File

@@ -707,9 +707,9 @@ Vec3 Mob::getPos(float f)
return m_pos;
return Vec3(
Lerp(field_3C.x, m_pos.x, f),
Lerp(field_3C.y, m_pos.y, f),
Lerp(field_3C.z, m_pos.z, f)
Mth::Lerp(field_3C.x, m_pos.x, f),
Mth::Lerp(field_3C.y, m_pos.y, f),
Mth::Lerp(field_3C.z, m_pos.z, f)
);
}