answers.unity $$anonymous$$ Fix

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

Tác giả
drhouse
Cài đặt hàng ngày
0
Số lần cài đặt
2
Đánh giá
0 0 0
Phiên bản
1.0
Đã tạo
30-07-2022
Đã cập nhật
30-07-2022
Size
1013 Byte
Giấy phép
CC-BY-NC-SA-4.0
Áp dụng cho

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)