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)