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

Unity3d Time

时间:2016-07-19 23:25:22      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:

using UnityEngine;
using System.Collections;

public class test1 : MonoBehaviour {
    public float angleSpeed;
    void Update () {
        if(Input.GetKeyDown(KeyCode.UpArrow))
        {
            float sumTime = Time.time;
            print("从游戏开始到当前帧所消耗的总时长:" + sumTime.ToString());

            float deltaTime = Time.deltaTime;
            print("两帧之间的时间间隔:" + deltaTime.ToString());
        }

        //让游戏当前对象每秒中准确的旋转30度
        transform.Rotate(Vector3.up, Time.deltaTime * angleSpeed);

        //时间流逝的快慢
        float ts = Time.timeScale;
    }
}

 

Unity3d Time

标签:

原文地址:http://www.cnblogs.com/wrbxdj/p/5686476.html

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