answers.unity $$anonymous$$ Fix

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

Aŭtoro
drhouse
Ĉiutagaj instaloj
0
Tutaj instaloj
2
Ratings
0 0 0
Versio
1.0
Kreita
2022/07/30
Ĝisdatigita
2022/07/30
Licenco
CC-BY-NC-SA-4.0
Aplikiĝas al

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)