Bolt: How to show big number instead of scientific notation like1e+7

Hello There,

I trying to show the money value of 10000000 instead of 1e+7 and also 0.000001 instead of 1e-6.

How do I solve this in Bolt?

Please help.

Thank you

I am using the Visual Scripting in Unity 2021.1b5 , but I guess this will be similar in Bolt.

You need to use the ToString with float and Format. For the Format, I just set .######### , and then it will show numbers in non scientific format:

Here, float input is 1e+10:

And here it is 2e-10:

Hope this help :slight_smile:

Happy gamedev!