iOS   发布时间:2022-05-04  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了iphone – 如何在Cocos2d中更新和显示分数整数?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

我显然正在制作一个有分数的游戏.如何调用更新方法并在右上角实际显示整数? 在这里,这可能会奏效 在.h文件中: @interface HelloWorld : CCLayer { int score; CCLabelTTF *scoreLabel; } - (void)addPoint; 在.m文件中: In the init method: //Set the scor
我显然正在制作一个有分数的游戏.如何调用更新方法并在右上角实际显示整数?

解决方法

在这里,这可能会奏效

在.h文件中:

@interface HelloWorld : CCLayer {
    int score;    
    CCLabelTTF *scoreLabel;
}

- (void)addPoint;

在.m文件中:

//Set the score to zero.
score = 0;

//Create and add the score label as a child.
scoreLabel = [CCLabelTTF labelWithString:@"8" fontName:@"Marker Felt" fontSize:24];
scoreLabel.position = ccp(240,160); //Middle of the screen...
[self addChild:scoreLabel z:1];

别的地方:

- (void)addPoint
{
    score = score + 1; //I think: score++; will also work.
    [scoreLabel setString:[NSString StringWithFormat:@"%@",score]];
}

现在只需致电:[self addPoint];每当用户杀死敌人时.

这应该工作,告诉我,如果没有,因为我没有测试它.

大佬总结

以上是大佬教程为你收集整理的iphone – 如何在Cocos2d中更新和显示分数整数?全部内容,希望文章能够帮你解决iphone – 如何在Cocos2d中更新和显示分数整数?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。