Greasy Fork is available in English.

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 ไบต์
สัญญาอนุญาต
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)