cocos2d-android:如何设置短信

发布于 2025-01-02 09:46:14 字数 78 浏览 1 评论 0原文

我是 cocos2d-android 的新手。我试图在两个精灵之间发生碰撞后在当前图层上设置一些文本,一段时间后文本将消失。怎么可能?请帮忙。

I am new to cocos2d-android. I am trying to set some text on current layer after colliding between two sprites and after some moment text will be vanished. how it possible? plz help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看透却不说透 2025-01-09 09:46:14

抱歉,回复晚了,

只需在您的更新方法中调用此方法,其中您的 update() 方法在 constructor 中使用 this.schedule("update"); 调用code>

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();
}

sorry for late responce

just call this method in your update method where your update() method call in constructor with this.schedule("update");

and for addScore() method your own question go here

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); 
}

and in your update method

public void update()
{
     // Here is your code
     addScore();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文