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

news/2024/11/17 4:42:57/

在Unity3d 中可以通过代码设置 来限定游戏帧率。

[csharp]  view plain copy
  1. Application.targetFrameRate=-1;  

设置为 -1 表示不限定帧率。  转自http://blog.csdn.net/huutu

一般在手机游戏中我们限定帧率为30 就OK了。

[csharp]  view plain copy
  1. Application.targetFrameRate=30;  

但是把这个代码添加到工程之后,在Unity中运行起来发现并没有什么卵用。。。。

转自http://blog.csdn.net/huutu

于是到官网查看资料

[html]  view plain copy
  1. http://docs.unity3d.com/ScriptReference/Application-targetFrameRate.html  

[plain]  view plain copy
  1. Application.targetFrameRate  
  2. public static int targetFrameRate;  
  3. Description  
  4.   
  5. Instructs game to try to render at a specified frame rate.  
  6.   
  7. Setting targetFrameRate to -1 (the default) makes standalone games render as fast as they can,   
  8.   
  9. and web player games to render at 50-60 frames/second depending on the platform.  
  10.   
  11. Note that setting targetFrameRate does not guarantee that frame rate.   
  12.   
  13. There can be fluctuations due to platform specifics, or the game might not achieve the frame rate because the computer is too slow.  
  14.   
  15. If vsync is set in quality setting, the target framerate is ignored, and the vblank interval is used instead.   
  16.   
  17. The vBlankCount property on qualitysettings can be used to limit the framerate to half of the screens refresh rate   
  18.   
  19. (60 fps screen can be limited to 30 fps by setting vBlankCount to 2)  
  20.   
  21. targetFrameRate is ignored in the editor.  

大意就是说:

Application.targetFrameRate 是用来让游戏以指定的帧率运行,如果设置为 -1 就让游戏以最快的速度运行。

但是 这个 设定会 垂直同步 影响。

如果设置了垂直同步,那么 就会抛弃这个设定 而根据 屏幕硬件的刷新速度来运行。

如果设置了垂直同步为1,那么就是 60 帧。

如果设置了为2 ,那么就是 30 帧。


点击 菜单  Editor -> ProjectSetting -> QualitySettings 来打开渲染质量设置面板。

转自http://blog.csdn.net/huutu

1、首先关掉垂直同步,如上图。

设置帧率为100


然后运行后的帧率是 100.



2、设置垂直同步为1


可以看到帧率为 60 帧左右跳动,完全无视了代码中的设定。

转自http://blog.csdn.net/huutu

3、设定垂直同步为 2


可以看到帧率在 30帧左右跳动。

转自http://blog.csdn.net/huutu

在游戏中显示帧率代码:

[csharp]  view plain copy
  1. using UnityEngine;  
  2. using System.Collections;  
  3. using DG.Tweening;  
  4.   
  5. public class NewBehaviourScript : MonoBehaviour   
  6. {  
  7.     private float m_LastUpdateShowTime=0f;  //上一次更新帧率的时间;  
  8.   
  9.     private float m_UpdateShowDeltaTime=0.01f;//更新帧率的时间间隔;  
  10.   
  11.     private int m_FrameUpdate=0;//帧数;  
  12.   
  13.     private float m_FPS=0;  
  14.   
  15.     void Awake()  
  16.     {  
  17.         Application.targetFrameRate=100;  
  18.     }  
  19.   
  20.     // Use this for initialization  
  21.     void Start ()   
  22.     {  
  23.         m_LastUpdateShowTime=Time.realtimeSinceStartup;  
  24.     }  
  25.       
  26.     // Update is called once per frame  
  27.     void Update ()   
  28.     {  
  29.         m_FrameUpdate++;  
  30.         if(Time.realtimeSinceStartup-m_LastUpdateShowTime>=m_UpdateShowDeltaTime)  
  31.         {  
  32.             m_FPS=m_FrameUpdate/(Time.realtimeSinceStartup-m_LastUpdateShowTime);  
  33.             m_FrameUpdate=0;  
  34.             m_LastUpdateShowTime=Time.realtimeSinceStartup;  
  35.         }  
  36.     }  
  37.   
  38.     void OnGUI()  
  39.     {  
  40.         GUI.Label(new Rect(Screen.width/2,0,100,100),"FPS: "+m_FPS);  
  41.     }  
  42. }  

官网文档中的最后一句……经测试在编辑器状态下是有效的。。

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

相关文章

Unity显示帧率代码

新建一个FPSDisplay的脚本,把下面的代码粘贴进去,或者这里下载。然后把脚本挂载场景中任意物体上。 using UnityEngine; using System.Collections;public class FPSDisplay : MonoBehaviour {float deltaTime 0.0f;void Update(){deltaTime (Time.un…

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…