码迷,mamicode.com
首页 > 编程语言 > 详细

unity 定时器

时间:2017-01-17 23:08:14      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:atime   update   计时   计时器   int   oat   time   bsp   interval   

float T=0;

                                                                                                                        //时间间隔,在编辑面板可以调

public float interval=1;

void Update(){

                                                                                                                        //每一帧所用的时间

T+=Time.deltaTime;

 

if(T>=interval){

                                                                                                                       //计时器归零

T=0;

 

}

}

 

unity 定时器

标签:atime   update   计时   计时器   int   oat   time   bsp   interval   

原文地址:http://www.cnblogs.com/lzl0823/p/6294829.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!