Unity 3D帧率统计脚本

分享一个实用的Unity3D 帧率统计脚本

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class FrameCounter : MonoBehaviour
{
    // Attach this to a GUIText to make a frames/second indicator.
    // It calculates frames/second over each updateInterval,
    // so the display does not keep changing wildly.
    // It is also fairly accurate at very low FPS counts (<10).
    // We do this not by simply counting frames per interval, but
    // by accumulating FPS for each frame. This way we end up with
    // correct overall FPS even if the interval renders something like
    // 5.5f frames.
    #region 字段
    float updateInterval = 1.0f;
    private float accum = 0.0f;        // FPS accumulated over the interval
    private float frames = 0;      // Frames drawn over the interval
    private float timeleft; // Left time for current interval
    private float fps = 15.0f;         // Current FPS
    private float lastSample;
    private float gotIntervals = 0;
    #endregion
    #region 属性

    private GUIStyle fontStyle = new GUIStyle();

    #endregion
    #region Unity回调函数

    //private void Awake()
    //{
    //    Application.targetFrameRate = -1;
    //}

    void Start()
    {
        fontStyle.normal.background = null;    //设置背景填充
        fontStyle.normal.textColor = Color.white;   //设置字体颜色
        fontStyle.fontSize = 40;


        timeleft = updateInterval;
        lastSample = Time.realtimeSinceStartup;
    }//Start ()_end
     // void Update()
    void Update()
    {
        ++frames;
        float newSample = Time.realtimeSinceStartup;
        float deltaTime = newSample - lastSample;
        lastSample = newSample;
        timeleft -= deltaTime;
        accum += 1.0f / deltaTime;
        // Interval ended - update GUI text and start new interval
        if (timeleft <= 0.0f)
        {
            // display two fractional digits (f2 format)
            fps = accum / frames;
            // guiText.text = fps.ToString("f2");
            timeleft = updateInterval;
            accum = 0.0f;
            frames = 0;
            ++gotIntervals;
        }
        //text.text = "FPS:" + fps.ToString("f2");
    }//Update ()_end
    #endregion
    #region 自建方法
    void OnGUI()
    {
        GUI.Label(new Rect(0, 50, 200, 200), "FPS:" + fps.ToString("f2"));
    }
    #endregion
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值