Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Mathf.Round

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function Round(f: float): float;
public static float Round(float f);

Parámetros

Descripción

Devuelve f redondeado al entero más cercano.

If the number ends in .5 so it is halfway between two integers, one of which is even and the other odd, the even number is returned.

	// Prints 10
	Debug.Log(Mathf.Round(10.0));
	
	// Prints 10
	Debug.Log(Mathf.Round(10.2));
	
	// Prints 11
	Debug.Log(Mathf.Round(10.7));
	
	// Prints 10
	Debug.Log(Mathf.Round(10.5));
	
	// Prints 12
	Debug.Log(Mathf.Round(11.5));
	
	// Prints -10
	Debug.Log(Mathf.Round(-10.0));
	
	// Prints -10
	Debug.Log(Mathf.Round(-10.2));
	
	// Prints -11
	Debug.Log(Mathf.Round(-10.7));
	
	// Prints -10
	Debug.Log(Mathf.Round(-10.5));
	
	// Prints -12
	Debug.Log(Mathf.Round(-11.5));
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {

// Use this for initialization void Start () { // Prints 10 Debug.Log(Mathf.Round(10.0f)); // Prints 10 Debug.Log(Mathf.Round(10.2f)); // Prints 11 Debug.Log(Mathf.Round(10.7f)); // Prints 10 Debug.Log(Mathf.Round(10.5f)); // Prints 12 Debug.Log(Mathf.Round(11.5f)); // Prints -10 Debug.Log(Mathf.Round(-10.0f)); // Prints -10 Debug.Log(Mathf.Round(-10.2f)); // Prints -11 Debug.Log(Mathf.Round(-10.7f)); // Prints -10 Debug.Log(Mathf.Round(-10.5f)); // Prints -12 Debug.Log(Mathf.Round(-11.5f)); } }