0

I'm newbie in Android and i want start 2D game development. How to change image position? I try this:

  • OpenGL,but it's very complicated for me.I want anything easiser.
  • SetX,Margins,etc.I think this is not real way of development and this is slow.
  • I found some library/game engine for game development,but i don't want to use them.
  • I use animations,but it don't change real position...
4

2 に答える 2

0

libgdxを使用できますが、他のドキュメントとは異なり、簡単に入手でき、ゲームを簡単に開発するための多くの機能が提供されます。

于 2013-08-12T08:48:36.983 に答える
0

移動/ナビゲートするための非常に基本的な画像については、AnimationAndroid から提供されたものを使用できると思います。アニメーションの下には、画像を任意の方向に変換できる変換機能があります。座標を処理する必要があると考えてください。以下はコードスニペットの例です:

Animation animation = new TranslateAnimation(0, 500,0, 0);
animation.setDuration(1000);
animation.setFillAfter(true);
myImage.startAnimation(animation);
myImage.setVisibility(0);

詳細については、以下の投稿を参照してください。

アニメーションを翻訳

于 2013-08-12T08:23:02.397 に答える