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

説明

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

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

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { Debug.Log(Mathf.RoundToInt(10.0F)); Debug.Log(Mathf.RoundToInt(10.2F)); Debug.Log(Mathf.RoundToInt(10.7F)); Debug.Log(Mathf.RoundToInt(10.5F)); Debug.Log(Mathf.RoundToInt(11.5F)); Debug.Log(Mathf.RoundToInt(-10.0F)); Debug.Log(Mathf.RoundToInt(-10.2F)); Debug.Log(Mathf.RoundToInt(-10.7F)); Debug.Log(Mathf.RoundToInt(-10.5F)); Debug.Log(Mathf.RoundToInt(-11.5F)); } }