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

@@ -80,9 +80,9 @@ void Particle::render(Tesselator& t, float f, float a4, float a5, float a6, floa
float texU_1 = float(texX) / 16.0f;
float texV_1 = float(texture >> 4) / 16.0f;
float posX = Lerp(field_3C.x, m_pos.x, f) - xOff;
float posY = Lerp(field_3C.y, m_pos.y, f) - yOff;
float posZ = Lerp(field_3C.z, m_pos.z, f) - zOff;
float posX = Mth::Lerp(field_3C.x, m_pos.x, f) - xOff;
float posY = Mth::Lerp(field_3C.y, m_pos.y, f) - yOff;
float posZ = Mth::Lerp(field_3C.z, m_pos.z, f) - zOff;
float fBright = m_bIsUnlit ? 1.0f : getBrightness(f);
float sizeX = a4 * field_F0 * 0.1f;