unity解决APP在手机发烫问题

来源:互联网 发布:python嵌套shell命令 编辑:程序博客网 时间:2024/04/19 13:24

在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.thisisgame.com.cn

阅读全文
0 0
原创粉丝点击