public static int RoundToInt (float f);

Descripción

Devuelve f redondeado al entero más cercano.

Si el número termina en .5 así que está a mitad de camino entre dos números enteros, uno de los cuales es par y el otro impar, se devuelve el número par.

using UnityEngine;

public class ExampleScript : MonoBehaviour { void Start() { // Prints 10 Debug.Log(Mathf.RoundToInt(10.0f)); // Prints 10 Debug.Log(Mathf.RoundToInt(10.2f)); // Prints 11 Debug.Log(Mathf.RoundToInt(10.7f)); // Prints 10 Debug.Log(Mathf.RoundToInt(10.5f)); // Prints 12 Debug.Log(Mathf.RoundToInt(11.5f));

// Prints -10 Debug.Log(Mathf.RoundToInt(-10.0f)); // Prints -10 Debug.Log(Mathf.RoundToInt(-10.2f)); // Prints -11 Debug.Log(Mathf.RoundToInt(-10.7f)); // Prints -10 Debug.Log(Mathf.RoundToInt(-10.5f)); // Prints -12 Debug.Log(Mathf.RoundToInt(-11.5f)); } }