How to change Sprite texture to Animation

青春壹個敷衍的年華 提交于 2019-12-02 11:37:57

To change from a texture to an animation

Create a subclas of Sprite called MySprite or something, and override the draw(batch) method.

In the overriden draw method, if you want to draw a texture, simply call super.draw(batch), otehrwise use your animation draw code. You can get the delta time using Gdx.graphics.getDeltaTime()

Why you have to specify timePassed

Your program will run at different frame rates to the animation, so by telling the animation how much time has passed, it can work out what frame it should be on according to it's own framerate.

Note that the framerate of your app can vary from frame-to-frame depending on how much work it has to do.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!