Greasy Fork is available in English.

answers.unity $$anonymous$$ Fix

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

Autor
drhouse
Installationen heute
0
Installationen gesamt
2
Bewertungen
0 0 0
Version
1.0
Erstellt am
30.07.2022
Letzte Aktualisierung
30.07.2022
Size
1013 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)