Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking to persistently display a game score in an iPhone app using cocos2d. Going off the code that cocos2d shows the FPS the app is running at:

-(void) showFPS
{
    frames++;
    accumDt += dt;

    if ( accumDt > 0.1)  {
        frameRate = frames/accumDt;
        frames = 0;
        accumDt = 0;
    }

    NSString *str = [NSString stringWithFormat:@"%.1f",frameRate];
    [FPSLabel setString:str];
    [FPSLabel draw];
}

I can get the score to display properly, but it flickers, even though the app is running at faster that 60 FPS... Any ideas?

share|improve this question
One thing about this code that you showed, don't message FPSLabel with draw. Instead, use [FPSLabel setNeedsDisplay:YES] after you update it. This should cancel your flicker. – Jason Coco Dec 3 '08 at 16:38

2 Answers

up vote 5 down vote accepted

Try using LabelAtlas instead. It is faster (it consumes much less CPU). See the AtlasDemo that comes with the cocos2d distribution to see how to use it.

share|improve this answer

For anyone who might be interested, I ended up using a cocos2d Label as so:

scoreLabel = [Label labelWithString: [NSString stringWithFormat:@"%d", score] dimensions: CGSizeMake(180, 20) alignment: UITextAlignmentRight fontName:@"Arial" fontSize: 20];
[scoreLabel setPosition: cpv(100,100)];
[self add: scoreLabel];

Hopefully this can help someone else.

share|improve this answer
2  
As of Cocos2d 0.8, you should use a BitmapFontAtlas, as it is way faster for something that's updated frequently on screen. – Brad Parks Oct 16 '09 at 18:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.