Unity3D基于OnGUI实时显示FPS

作者:一缕残阳 时间:2021-06-25 09:10:52 

帧率(Frame rate)是用于测量显示帧数的量度。所谓的测量单位为每秒显示帧数(Frames per Second,简称:FPS)或“赫兹”(Hz)。此词多用于影视制作和电子游戏。由于人类眼睛的特殊生理结构,如果所看画面之帧率高于16的时候,就会认为是连贯的,此现象称之为视觉暂留。

每秒的帧数(fps)或者说帧率表示图形处理器处理场时每秒钟能够更新的次数。高的帧率可以得到更流畅、更逼真的动画。一般来说30fps就是可以接受的,但是将性能提升至60fps则可以明显提升交互感和逼真感,但是一般来说超过75fps一般就不容易察觉到有明显的流畅度提升了。如果帧率超过屏幕刷新率只会浪费图形处理的能力,因为监视器不能以这么快的速度更新,这样超过刷新率的帧率就浪费掉了。

以下是在Unity3D中显示fps的代码。


using UnityEngine;
using System.Collections;

[AddComponentMenu( "Utilities/HUDFPS")]
public class FPSCounter : MonoBehaviour
{
//fps 显示的初始位置和大小
public Rect startRect=new Rect(512, 10f, 75f, 50f );
//fps 过低时是否改变UI颜色
public bool updateColor = true;
//fps UI 是否允许拖动
public bool allowDrag = true;
//fps 更新的频率
public float frequency = 0.5F;
//fps 显示的精度
public int nbDecimal = 1;
//一定时间内的fps数量
private float accum = 0f;
//fps计算的时间
private int frames = 0;
//GUI 依赖fps的颜色 fps<10 红色 fps<30 黄色 fps>=30 绿色
private Color color = Color.white;
//fps
private string sFPS = "";
//GUI 的样式
private GUIStyle style;

void Start()
{
StartCoroutine(FPS());
}

void Update()
{
accum += Time.timeScale/ Time.deltaTime;
++frames;
}

IEnumerator FPS()
{
while( true )
{
//更新fps
float fps = accum/frames;
sFPS = fps.ToString( "f" + Mathf.Clamp( nbDecimal, 0, 10 ) );

//更新颜色
color = (fps >= 30) ? Color.green : ((fps > 10) ? Color.yellow : Color.red);

accum = 0.0F;
frames = 0;

yield return new WaitForSeconds( frequency );
}
}

void OnGUI()
{
if( style == null ){
style = new GUIStyle( GUI.skin.label );
style.normal.textColor = Color.white;
style.alignment = TextAnchor.MiddleCenter;
}

GUI.color = updateColor ? color : Color.white;
startRect = GUI.Window(0, startRect, DoMyWindow, "");
}

void DoMyWindow(int windowID)
{
GUI.Label( new Rect(0, 0, startRect.width, startRect.height), sFPS + " FPS", style );
if( allowDrag ) GUI.DragWindow(new Rect(0, 0, Screen.width, Screen.height));
}
}

来源:https://blog.csdn.net/m0_37998140/article/details/78255799

标签:Unity3D,OnGUI,FPS
0
投稿

猜你喜欢

  • Java实战之王者荣耀的英雄是怎么产生的?

    2021-08-25 12:35:49
  • Mybatis通过Spring完成代理类注入的流程分析

    2023-10-25 00:55:55
  • java selenium Selenium IDE介绍及用法

    2023-11-21 06:41:22
  • C#中IEnumerable接口用法实例分析

    2022-03-24 12:40:21
  • Java算法设计与分析分治算法

    2022-04-02 08:07:15
  • java代码执行字符串中的逻辑运算方法

    2023-11-29 12:13:06
  • Java使用JDBC实现Oracle用户认证的方法详解

    2022-10-06 08:59:36
  • C#中的引用类型以及特殊引用类型详解

    2023-06-18 01:43:46
  • IDEA自定义常用代码块及自定义快捷摸板

    2022-01-13 18:54:22
  • c# BackgroundWorker使用方法

    2021-05-27 00:49:12
  • 基于java math API 的详细解释说明

    2021-10-04 06:51:44
  • MyBatisPlus代码生成器的使用示例

    2022-04-28 07:52:42
  • Java C++分别实现滑动窗口的最大值

    2023-04-12 02:59:21
  • 仅用5分钟极速入门Dubbo使用教程

    2022-08-08 12:08:55
  • Java多线程通信:交替打印ABAB实例

    2022-04-08 06:57:28
  • c# 用Dictionary实现日志数据批量插入

    2022-05-29 02:01:45
  • C#反射内存的处理分析

    2022-04-30 00:56:22
  • Java并发编程之LockSupport类详解

    2022-08-21 10:38:36
  • Spring Cloud 请求重试机制核心代码分析

    2023-04-11 04:00:23
  • C#机器入门学习之判断日报是否合格详解

    2023-03-24 01:55:08
  • asp之家 软件编程 m.aspxhome.com