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.