码迷,mamicode.com
首页 > 其他好文 > 详细

u3d fpsCounter

时间:2014-08-05 13:24:19      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   os   io   for   art   

因为u3d自己的stats下面的fpscounter不是实际意义上的fps,所以看到demo的fpsCounter,把它改写为c#的

using UnityEngine;
using System.Collections;

public class FpsCounterex : MonoBehaviour
{
    private GUIText guitex;
    private double updateInterval = 1.0f;
    private double lastInterval;
    private int frames = 0;

    // Use this for initialization
    void Start ()
    {
        lastInterval = Time.realtimeSinceStartup;
        frames = 0;
    }

    void Exit()
    {
        if (guiText)
            DestroyImmediate(guiText.gameObject);
    
    
    }
    void OnDisable()
    {
        if (guiText)
            DestroyImmediate(guiText.gameObject);
    }
    // Update is called once per frame
    void Update ()
    {
        ++frames;
        float timeNow = Time.realtimeSinceStartup;
        if (timeNow > lastInterval + updateInterval)
        {
            if (!guitex)
            {
               GameObject go= new GameObject("FPS Display");
               go.AddComponent("GUIText");
              // go.hideFlags = HideFlags.HideAndDontSave;
               go.transform.position =new  Vector3(0,0,0);
               guitex = go.guiText;
               guitex.pixelOffset =new  Vector2(5,55);
            }
            float fps=(float) frames /(float) (timeNow - lastInterval);
            float ms  = 1000.0f / Mathf.Max((float)fps, 0.00001f);
            guitex.text = ms.ToString("f1") + "ms " + fps.ToString("f6") + "FPS";
           // guitex.text = "abasdfasdfadsf";
            frames = 0;
            lastInterval = timeNow;
        }

       // guitex.text = "asdfasdfadsfas";
    }
}

代码放到gameobject下面,界面会自己现实fps

u3d fpsCounter,布布扣,bubuko.com

u3d fpsCounter

标签:des   style   blog   color   os   io   for   art   

原文地址:http://www.cnblogs.com/dragon2012/p/3891739.html

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