I want to know is their any sub-library of Andengine that can morph two different images? or in Android? I have been looking for it but i haven't found anything. Help me out...
Asked
Active
Viewed 3,426 times
2
-
can you describe "morph" a bit? Do you mean the effect in Michael Jackson's Black or White video? Or the liquid metal from Terminator 3? Or just doing an alpha crossfade? – Plastic Sturgeon May 17 '12 at 22:32
-
yes exactly, that MJ's black and white video is morphing...i dont know how to do it in Android (more specifically in andengine)? – Usama Aftab May 29 '12 at 08:32
1 Answers
3
There is nothing native to andengine that will do that.
To morph images, you need a bitmap manipulation library that does that: javamorph For example this one.
Then in andengine, you assign a texture to a Sprite, and as the bitmap updates, you will need to update the texture region.
Or, render the morph frames and make an animatedSpritetexture.

kyogs
- 6,766
- 1
- 34
- 50

Plastic Sturgeon
- 12,527
- 4
- 33
- 47
-
please give me some example of image morphing i don't know how to use this java morph liberary.. – Roadies Apr 05 '13 at 05:51
-
paste your example here http://stackoverflow.com/questions/15779669/how-to-morphing-on-image-in-android – Roadies Apr 05 '13 at 05:52
-