mgR
mgR

Reputation: 195

Create a 3d animation using AndEngine

I'm developing a 2d game for Android using AndEngine GLES2. I'm willing to create a 3d animation of a flipping card.

Is it possible to create such an animation? or perhaps use the engine's source code to reach GLES native code?

Of course, every other example or suggestion is more than welcome. Thank you!

Upvotes: 1

Views: 760

Answers (1)

Matthewek
Matthewek

Reputation: 1559

AndEngine is a 2D game engine, however you can create 3D rotation effect by creating proper sprite sheet (artwork) with couple of frames/tiles, latter creating AnimatedSprite and animate it, to achieve following effect.Example:

enter image description here

Upvotes: 2

Related Questions