answers.unity $$anonymous$$ Fix

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

ავტორი
drhouse
დღიური ინსტალაციები
0
მთლიანი ინსტალაციები
2
რეიტინგი
0 0 0
ვერსია
1.0
შექმნილია
30.07.2022
განახლებულია
30.07.2022
ლიცენზია
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)