Version: 2019.2
public static int RoundToInt (float f);

説明

f に最も近い整数を返します。

数が .5 で終わる場合はふたつの整数(偶数と奇数)の中間に位置していますが、偶数が返されます。

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)); } }