answers.unity $$anonymous$$ Fix

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

Versione datata 30/07/2022. Vedi la nuova versione l'ultima versione.

Autore
drhouse
Valutazione
0 0 0
Versione
1.0
Creato il
30/07/2022
Aggiornato il
30/07/2022
Dimensione
1011 Byte
Licenza
CC-BY-NC-SA-4.0
Applica a

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)