answers.unity $$anonymous$$ Fix

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

2022-07-30 기준 버전입니다. 최신 버전을 확인하세요.

작성자
drhouse
평점
0 0 0
버전
1.0
생성일
2022-07-30
갱신일
2022-07-30
크기
1011바이트
라이선스
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)