answers.unity $$anonymous$$ Fix

fixes persistent text issue of '$$anonymous$$' replacing 'M' everywhere

Autor
drhouse
Denně instalací
0
Celkem instalací
2
Hodnocení
0 0 0
Verze
1.0
Vytvořeno
30. 07. 2022
Aktualizováno
30. 07. 2022
Licence
CC-BY-NC-SA-4.0
Spustit na

fixes longstanding annoying text issue of '$$anonymous$$' replacing 'M' everywhere, example:
if($$anonymous$$athf.Abs(rigidbody.velocity.x) > maxSpeed || $$anonymous$$athf.Abs(rigidbody.velocity.y) > maxSpeed)
script fix:
if(Mathf.Abs(rigidbody.velocity.x) > maxSpeed || Mathf.Abs(rigidbody.velocity.y) > maxSpeed)