my current code:
private GUILabel windSpeedText;
private float windSpeed = 5;
windSpeedText.text = "" + Mathf.Round(windSpeed * 100.0f) / 100.0f;
current Output: 5
Wanted Output: 5.00
I would always like to always have 2 decimal places following the number.