🏠 Home 

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)