answers.unity $$anonymous$$ Fix

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

질문, 리뷰하거나, 이 스크립트를 신고하세요.
개발자
drhouse
일일 설치수
0
총 설치수
2
평점
0 0 0
버전
1.0
생성
2022-07-30
갱신
2022-07-30
라이선스
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)