点击屏幕时让玩家跳跃

时间:2013-10-09 06:50:39

标签: c# xna

如何在点按手机屏幕时调用以下方法

public void draw(SpriteBatch spriteBatch)
{
   spriteBatch.Draw(Texture.player[currentframe], Texture.position, Color.White);
   currentframe++;
   if (currentframe > 24) currentframe = 0;
}

0 个答案:

没有答案