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 Bytes
License
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)