Version: 2017.2
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)); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961