Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在点击手机屏幕时调用以下方法
public void draw(SpriteBatch spriteBatch) { spriteBatch.Draw(Texture.player[currentframe], Texture.position, Color.White); currentframe++; if (currentframe > 24) currentframe = 0; }