answers.unity $$anonymous$$ Fix

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

Version vom 30.07.2022. Aktuellste Version

Autor
drhouse
Bewertungen
0 0 0
Version
1.0
Erstellt am
30.07.2022
Letzte Aktualisierung
30.07.2022
Größe
1011 Bytes
Lizenz
CC-BY-NC-SA-4.0
Wird angewandt auf

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)