answers.unity $$anonymous$$ Fix

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

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
作者
drhouse
1日のインストール数
0
累計インストール数
2
評価
0 0 0
バージョン
1.0
作成日
2022/07/30
更新日
2022/07/30
ライセンス
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)