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.Clamp

Cambiar al Manual
public static float Clamp(float value, float min, float max);

Parámetros

Descripción

Satura un valor entre dos valores float mínimo y máximo.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Update() { transform.position = new Vector3(Mathf.Clamp(Time.time, 1.0F, 3.0F), 0, 0); } }

public static int Clamp(int value, int min, int max);

Parámetros

Descripción

Satura un valor entre mínimo y máximo y devuelve el valor.

	// Clamps the value 10 to be between 1 and 3.
	// prints 3 to the console

Debug.Log(Mathf.Clamp(10, 1, 3));