Mathf.SmoothStep 平滑插值

static function SmoothStep (from : float, to : float, t : float) : float

Description描述

Interpolates between min and max and eases in and out at the limits.

和lerp类似,在最小和最大值之间的插值,并在限制处渐入渐出。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public float minimum = 10.0F;
	public float maximum = 20.0F;
	void Update() {
		transform.position = new Vector3(Mathf.SmoothStep(minimum, maximum, Time.time), 0, 0);
	}
}
var minimum = 10.0;
var maximum = 20.0;

function Update() {
	transform.position = Vector3(Mathf.SmoothStep(minimum, maximum, Time.time), 0, 0);
}
最后修改:2011年2月23日 Wednesday 15:22

本脚本参考基于Unity 3.4.1f5

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