Samples on AndEngine

I want to learn AndEngine.

How do i get started? I do not see any good examples. I even tried to find downloadable source code for AndEngine and MagneTank, but no luck.

+8
android eclipse andengine
source share
7 answers

I suggest http://www.matim-dev.com/tutorials.html , which includes many tutorials. They are often supported by code examples. I especially recommend the "Series of articles on a complete game tutorial." With this, you will develop the game from scratch and learn a lot about AndEngine.

+8
source share

Try checking out their design from here and download some sample source from the internet, for example. here and run the examples supporting both sources in a common project.

+6
source share

If you are looking to learn the basic game programming of AndEngine, I suggest taking a look at this book: AndEngine for the cook for Android game developers .

This is a very good way to get started. I learned about it in just 1 week, and now I'm creating my own game.

+6
source share

Drop Block is an instance of an instance from the Google Play Store.

http://jimmaru.wordpress.com/2011/09/28/andengine-simple-android-game-tutorial/

and famous example towers ......> http://www.raywenderlich.com/12065/how-to-create-a-simple-android-game

+5
source share

Since AndEngine consists of several submissions, I created a repo manifest to use everything to try examples.

You can find it here: https://github.com/gipi/AndEngine-repo

+3
source share

Many people have already answered here, and I think they are all right:

But I also want to include my answer, because I started as a newbie to AndEngine, and now I'm still a newbie, but with a little knowledge than before.

1) Install the AndEngine APK from Google Play, check all the functionality that this engine shows in this, look, make is possible with all these tools in the APK.

2) Once you are ready, go to the github AndEngine page and install it.

3) Change the example (MOST IMPORTANT), you will not know what AndEngine is, and what it may or cannot do if you do not select examples in the AndEngine library.

4) Now you have a basic understanding, so its time to start the game.

5) Go to the matim-dev blog on how to make a complete game tutorial, this is the best andengine tutorial so far on the Internet.

6) If any problem asks your question on the andengine forum, well they never answer quickly, but all the problems you encounter are already discussed there, so there is no problem just go for it and run AndEngine.

Pros and cons of AndEngine so far for me:

Pros:

i) not documented, but still you can easily configure the code and understand very quickly. ii) Using Box2D is great for this, Animation Sprite is working fine.

against

i) Very slow compared to other structures, removing and removing bodies and sprites is very awkward, after 3 months of AndEngine development today there are also problems with removing sprites and disconnecting bodies in AndEngine.

ii) Google Ad Attachment is a nightmare on AndEngine.

+1
source share

Try creating basic Android app development to get Fimilar with environemt.

But to get the basic concepts, you have to read the first chapter

AndEngine for poker for Android game development by Jayme Schroeder and Brian Broils

from here

Create an account on Github (and select the code) / or download AndEngine (Zip) locally. and experiment with examples.

Next, download the Android and Android app to see examples in Motion! This is also a useful link: Java Code Developers

0
source share

All Articles