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
크기
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)