Thu Jan 10, 2019 4:52 pm
Assuming you're using something like a Text+ node, you need to format the string like so:
Text( string.format("%.5f", [number source]) )
In the string.format() function, the first argument determines how to handle the number. In this case, %.5f means that a floating-point number will have up to five digits after the decimal. To give it only two decimals, the string is %.2f.
The number source is whatever is feeding the Text. So it's probably whatever is currently in your Text() expression.
Bryan Ray
http://www.bryanray.name
http://www.musevfx.com