- 最后登录
- 2013-9-29
- 注册时间
- 2012-8-20
- 阅读权限
- 90
- 积分
- 6371
- 纳金币
- 6372
- 精华
- 0
|
unity3d 固定帧速的设置
Application.targetFrameRate
static var targetFrameRate : int
以固定帧率运行游戏:
值设定为-1时,windows***将以最大速率运行,而生成网页文件将以50-60帧/秒的帧率运行程序。
当然,此时设定的值并不一定是程序运行时的帧率。这是因为平台的不同,还有可能是计算机速度达不到设定值。
该值在编辑器中运行时被忽略。
以前我做游戏时发布成品Exe后只有在屏幕的分辨率下才能够流畅的运行,其他分辨率总是很卡。。设定targetFrameRate 后分辨率就不影响游戏速度了
function Awake ()
{
// Make the game***n as fast as possible in the web player
Application.targetFrameRate = 300;
}
|
|