Geralt of Rivia
Geralt of Rivia

Reputation: 44

Using 3d Carousel project to create SPB Carousel style

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

Answers (1)

Geralt of Rivia
Geralt of Rivia

Reputation: 44

Found the solution

Modify Carousel.getChildStaticTransformation(). after mCamera.translate(), and before mCamera.getMatrix() add:

mCamera.rotateY(-(CarouselImageView)child).getCurrentAngle());

Upvotes: 1

Related Questions