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)