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
Size
1013 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)