Unity 利用Coroutine实现跳动数字效果

纯粹转载:转载注明参考链接!

参考链接:http://xataxnova.blog.163.com/blog/static/236620063201451061738122/,作者:网易博客 xataxnova

 

示例代码:(将该脚本绑在一个Lable对象上,即可测试,显示为从1跳到10)

 

using UnityEngine;
using System.Collections;

public class test : MonoBehaviour 
{
    int result = 0;
    private int start = 1;
    private int end = 10;
    private int jumpTimes = 9;

    private UILabel label = null;
    void Start()
    {
        label = gameObject.GetComponent<UILabel>();
        StartCoroutine(JumpNumber());
    }

    public IEnumerator JumpNumber()
    {
        int delta = (end - start) / jumpTimes;
        result = 0;
        
        for (int i = 0; i < jumpTimes; i++)
        {
            result += delta;
            label.text = result.ToString();
            yield return new WaitForSeconds(1);
        }

        result = end;
        label.text = result.ToString();
        StopCoroutine(JumpNumber());
    }
}

   代码中 yield return new WaitForSeconds(1);表示返回1秒,若写成yield return1;表示返回1帧。

转载于:https://www.cnblogs.com/vitah/p/4171813.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值