Answers for "round to float unity"

C#
8

round to float unity

float f = 3.16856f;
f = Mathf.Round(f * 10.0f) * 0.1f;
//Which will give 3.2f


//If you want 2 decimal points then,


float f = 3.16856f;
f = Mathf.Round(f * 100.0f) * 0.01f;
//Which results in 3.17f, and so on.
Posted by: Guest on July-25-2020
4

unity round float to hundreths

yourFloat.ToString("F2")
Posted by: Guest on April-03-2020

C# Answers by Framework

Browse Popular Code Answers by Language