answers.unity $$anonymous$$ Fix

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

נכון ליום 30-07-2022. ראה הגרסה האחרונה.

יוצר
drhouse
דירוגים
0 0 0
גרסה
1.0
נוצר
30-07-2022
עודכן
30-07-2022
Size
1011 בתים
רישיון
CC-BY-NC-SA-4.0
חל על

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)