像其他游戏一样动态改变 AndEngine 中的分数
我不知道我正在寻找的确切术语。 我正在开发一款游戏,并在其他游戏场景中显示分数。我想改变分数(实际上是在以前的分数中添加当前分数),就像在其他游戏中一样,一一改变。 例如,如果以前的分数为 10,当前分数为 10,那么我想在添加时以速度 10 11 12 13 14 15... 来显示它。当达到 20 时,将播放类似 tiiiinnnnnnnn 的声音。我想一一补充。 我希望我解决了我的问题,请提供解决方案。 谢谢
I don't know the exact term for what I am looking for.
I am developing a game and I am showing score in other game scene. I want to change the score (Actually add current score in previous score) in such a way that is change one by one like in other games.
For example if previous score in 10 and current score is 10 then I want to show it like this with speed 10 11 12 13 14 15... while adding. And when reached 20 a sound will be played like tiiiinnnnnnnn. I want to add one by one.
I hope I cleared my question please provide a solution.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试一下,
使用可更改的文本来达到您的目的,
然后启动一个计时器并按照您想要的更改速度给予延迟
现在假设您要将文本从
int x = 10 更改为 int y = 20
Try this,
Use Changeable text for your purpose,
then start a timer and give it delay for the speed you want to for changing
Now suppose you want to change your text from
int x = 10 to int y = 20
另一种对我有用的方法。
Another way that works for me.