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 want to introduce a count down in my game. I'm using a code like this:

In onCreateResources()

this.font = FontFactory.create(this.getFontManager(), this.getTextureManager(), 256, 256, TextureOptions.BILINEAR, Typeface.create(Typeface.DEFAULT, Typeface.BOLD), 48);
this.font.load();

In onCreateScene()

this.countDownText = new Text(0, 0, this.font, "300", "300".length(), this.getVertexBufferObjectManager());
this.scene.attachChild(countDownText);

this.remain = 300;
this.timerHandler = new TimerHandler(1 / 10f, true, new ITimerCallback() {

    @Override
    public void onTimePassed(TimerHandler pTimerHandler) {
        remain--;
        countDownText.setText(remain + "");
    }
});
this.scene.registerUpdateHandler(timerHandler);

I found information about this problem and differents solutions that doesn't work for me:

  • Use ChangableText: This class is not longer in Andengine.
  • Preload the characters: This doesn't work for me.
share|improve this question

1 Answer

up vote 0 down vote accepted

ChangeableText is Text: link

"Text has all functionality of the old ChangeableText."

share|improve this answer
This does not address the problem of lag when changing text, which was the question after all. – OneThreeSeven Feb 15 at 22:03

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.