2016年7月13日 星期三

0713 cocos2d-x 關閉FPS

大家都看到了左下角的FPS变成3行,多了两行数据。
1.最上面一行是指的当前场景的渲染批次。(简单理解为需要渲染多少个贴图出来)
2.中间一行是渲染每一帧需要的时间。
3.最下行就是大家熟悉的FPS。

在这个
bool AppDelegate::applicationDidFinishLaunching()
{
...

    // turn on display FPS
    pDirector->setDisplayStats(false);
...
}

要想关闭的话在AppDelegate里注销或者设为NO
// Display FSP and SPF

[director_ setDisplayStats:YES];

沒有留言:

張貼留言

cocos2dx-lua 建立滑鼠監聽

重要關鍵字  EVENT_MOUSE_SCROLL addEventListenerWithSceneGraphPriority      if IsPc() then --建立滑鼠監聽         local listener = cc.EventListenerMouse...