我是 cocos2d-android 的新手。我试图在两个精灵之间发生碰撞后在当前图层上设置一些文本,并且在一段时间后文本将消失。怎么可能?请帮忙。
问问题
355 次
1 回答
0
抱歉回复晚了
只需在您的update()
方法调用constructor
的更新方法中调用此方法this.schedule("update");
对于addScore()
方法你自己的问题去这里
public void addScore() {
CCLabel labelScore = CCLabel.makeLabel("" + dead, "DroidSans", 20);
labelScore.setColor(new ccColor3B(1,1,1));
labelScore.setPosition(CGPoint.ccp(50, 50));
addChild(labelScore, 11);
labelScore.setTag(11);
_labelScores.add(labelScore);
CCCallFuncN actionMoveDone1 = CCCallFuncN.action(this, "labelFinished");
CCSequence action = CCSequence.actions(actionMoveDone1);
labelScore.runAction(action);
}
public void labelFinished(Object sender) {
CCLabel label = (CCLabel) sender;
if(label.getTag()== 11)
_labelScores.remove(label);
this.removeChild(label, true);
}
并在您的更新方法中
public void update()
{
// Here is your code
addScore();
}
于 2012-12-26T06:21:43.853 回答