首页 > 代码库 > 减速
减速
using UnityEngine; using System.Collections; public class stopSpeed : MonoBehaviour { public bool canStop = false; public float scrollSpeed = 5.0f; // Use this for initialization void Start () { } // Update is called once per frame void Update () { if(canStop == true){ canStop = false; StartCoroutine(StopScrolling(20.0f)); } } IEnumerator StopScrolling (float time) { //Slow down to 0 in time var rate = 1.0f / time; var t = 0.0f; float startValue =http://www.mamicode.com/ scrollSpeed; while (t < 1.0f) { t += Time.deltaTime * rate; scrollSpeed = Mathf.Lerp(startValue, 0, t); yield return new WaitForEndOfFrame(); } } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。