在Unity3d 中可以通过代码设置 来限定游戏帧率。
Application.targetFrameRate=-1;
设置为 -1 表示不限定帧率,一般情况在手机游戏中我们限定帧率为30 就OK了。
Application.targetFrameRate=30;
但是把这个代码添加到工程之后,在Unity中运行起来发现并没有起作用,于是到官网查看资料,官网的解释是
Application.targetFrameRate
public static int targetFrameRate;
Description
Instructs game to try to render at a specified frame rate.
Setting targetFrameRate to -1 (the default) makes standalone games render as fast as they can,
and web player games to render at 50-60 frames/second depending on the platform.
Note that setting targetFrameRate does not guarantee that frame rate.
There can be fluctuations due to platform specifics, or the game might not achieve the frame rate because the computer is too slow.
If vsync is set in quality setting, the target framerate is ignored, and the vblank interval is used instead.
The vBlankCount property on qualitysettings can be used to limit the framerate to half of the screens refresh rate
(60 fps screen can be limited to 30 fps by setting vBlankCount to 2)
targetFrameRate is ignored in the editor.
大意就是说:
Application.targetFrameRate 是用来让游戏以指定的帧率运行,如果设置为 -1 就让游戏以最快的速度运行。
但是 这个 设定会 垂直同步 影响。
如果设置了垂直同步,那么 就会抛弃这个设定 而根据 屏幕硬件的刷新速度来运行。
如果设置了垂直同步为1,那么就是 60 帧。
如果设置了为2 ,那么就是 30 帧。
点击 菜单 Editor -> ProjectSetting -> QualitySettings 来打开渲染质量设置面板。
1、首先关掉垂直同步,如上图。
设置帧率为100
然后运行后的帧率是 100.
2、设置垂直同步为1
可以看到帧率为 60 帧左右跳动,完全无视了代码中的设定。
3、设定垂直同步为 2
可以看到帧率在 30帧左右跳动。
在游戏中显示帧率代码: