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
Μέγεθος
1011 Bytes
Άδεια
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)