Version: 2017.1
public static float Clamp (float value, float min, float max);

Descripción

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

Descripción

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

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { // Use this for initialization void Start() { // Clamps the value 10 to be between 1 and 3. // prints 3 to the console

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