answers.unity $$anonymous$$ Fix

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

Auteur
drhouse
Nombre d'installations quotidiennes
0
Nombre d'installations
2
Évaluations
0 0 0
Version
1.0
Créer
2022-07-30
Mis à jour
2022-07-30
Licence
CC-BY-NC-SA-4.0
S'applique à

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)