Unity显示帧率代码

news/2024/11/17 4:26:01/

新建一个FPSDisplay的脚本,把下面的代码粘贴进去,或者这里下载。然后把脚本挂载场景中任意物体上。

using UnityEngine;
using System.Collections;public class FPSDisplay : MonoBehaviour
{float deltaTime = 0.0f;void Update(){deltaTime += (Time.unscaledDeltaTime - deltaTime) * 0.1f;}void OnGUI(){int w = Screen.width, h = Screen.height;GUIStyle style = new GUIStyle();Rect rect = new Rect(0, 0, w, h * 2 / 100);style.alignment = TextAnchor.UpperLeft;style.fontSize = h * 2 / 100;style.normal.textColor = new Color (0.0f, 0.0f, 0.5f, 1.0f);float msec = deltaTime * 1000.0f;float fps = 1.0f / deltaTime;string text = string.Format("{0:0.0} ms ({1:0.} fps)", msec, fps);GUI.Label(rect, text, style);}
}

效果

请添加图片描述

来源

Unity Wiki
里面还有不同的实现方式,自行研究。。


http://www.ppmy.cn/news/754203.html

相关文章

Unity帧率设置以及运行时显示帧率

Unity帧率设置以及运行时显示帧率 设置帧率测试与显示帧率 设置帧率 在Unity3d 中可以通过代码设置来限定游戏帧率。 Application.targetFrameRate -1;设置为**-1**表示不限定帧率,一般情况在手机游戏中我们限定帧率为30就OK了。 Application.targetFrameRate …

帧率设置 及在游戏运行时显示帧率

在Unity3d 中可以通过代码设置 来限定游戏帧率。 [csharp] view plain copy Application.targetFrameRate-1; 设置为 -1 表示不限定帧率。 转自http://blog.csdn.net/huutu 一般在手机游戏中我们限定帧率为30 就OK了。 [csharp] view plain copy Application.targetFrameRat…

Unity3d帧率设置及在游戏运行时显示帧率

在Unity3d 中可以通过代码设置 来限定游戏帧率。 Application.targetFrameRate-1; 设置为 -1 表示不限定帧率,一般情况在手机游戏中我们限定帧率为30 就OK了。 Application.targetFrameRate30; 但是把这个代码添加到工程之后,在Unity中运行起来发现并…

【Linux实验】构造一个简单的 shell

一、实验目的 l 用 C/C++构造一个简单的 shell; l 理解 shell 程序的功能; l 学会 shell 的使用;

合宙Air724UG LuatOS-Air core API--pwm

Table of Contents pwm pwm.open(id) pwm.close(id) pwm.set(id,param1,param2,clk_div) pwm 脉冲输出接口 pwm.open(id) 打开pwm 参数 参数 类型 释义 取值 id number PWM硬件编号 0(gpio5管脚),1(gpio13管脚) 返回值 返回值 类型 释义 取值 result number 1:表…

苹果手机apn怎么设置

参考   https://g.pconline.com.cn/jxwd/1226/12260856.html      APN指一种网络接入技术,是通过手机上网时必须配置的一个参数,它决定了手机通过哪种接入方式来访问网络。下面为大家介绍苹果手机apn怎么设置。苹果手机apn怎么设置  步骤1、打开…

android 手机网络设置,手机网络怎么设置 史上最详细的手机网络设置教程

随着智能手机的流行与普及,现在国内智能手机系统与手机网络商众多,3G网络主要是中国移动、中国联通以及中国电信三家三足鼎力;手机系统就更多了,谷歌安卓手机系统、苹果IOS手机系统、诺基亚塞班手机系统以及微软WP7手机系统等等&a…

苹果审核规则翻译

3.6
 Apps with App icons and screenshots that do not adhere to the 4 age rating will be rejected(图标与截屏不符合4年龄评级的应用会被拒。) 3.7
 Apps with Category and Genre selections that are not appropriate for the App content wil…