Mathf.Lerp

作者:追风剑情 发布于:2014-7-4 0:14 分类:Unity3d

  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4. public class MathfLerp : MonoBehaviour {
  5.  
  6. public float from = 0.0F;
  7. public float to = 6.0F;
  8. // Update is called once per frame
  9. void Update () {
  10. //当t=0返回from, 当t=1返回to, 当t>0 and t<1 返回from+(to-from)*t的值。
  11. transform.position = new Vector3(Mathf.Lerp(from, to, Time.time), 0, 0);
  12. }
  13. }

标签: Lerp

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号