Mathf.Clamp01 限制0~1

static function Clamp01 (value : float) : float

Description描述

Clamps value between 0 and 1 and returns value

限制value在0,1之间并返回value。如果value小于0,返回0。如果value大于1,返回1,否则返回value 。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Update() {
		transform.position = new Vector3(Mathf.Clamp01(Time.time), 0, 0);
	}
}
// Set the position of the transform to be that of the time
// but never less than 0 or more than 1
//随着时间设置变换位置
//但是不会小于0或大于1

function Update () {
	transform.position = Vector3(Mathf.Clamp01(Time.time), 0, 0);
}
最后修改:2011年2月23日 Wednesday 14:03

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。