Reputation: 44
http://www.codeproject.com/Articles/146145/Android-3D-Carousel
Trying to change each item's angle to get something like the SBP 3D shell.
spb.com/android-software/shell/
Api level 10
Upvotes: 0
Views: 2081
Reputation: 44
Found the solution
Modify Carousel.getChildStaticTransformation().
after mCamera.translate()
, and before mCamera.getMatrix()
add:
mCamera.rotateY(-(CarouselImageView)child).getCurrentAngle())
;
Upvotes: 1