-
iPod Album Scroll
Hi all, firstly i would like to start by saying this is quite an ask so you can all feel free to call me a cheeky git!
A client wants me to re-create the iPod album scroll like this…
https://macinblog.files.wordpress.com/2008/09/coverflow_hero_mac20060912.jpg
Terrible and cliched I know….
They are also going to want multiple versions as well so I would like to be able to drive the whole thing with expressions to make it easier to animate the different versions. All the albums need to be hooked up to a main null I think. So far all I have this on the album positions
a = (value[0])+(thisComp.layer(“Null 1”).transform.position[0]);
b = (value[1])+(thisComp.layer(“Null 1”).transform.position[1]);
c = (value[2])+(thisComp.layer(“Null 1”).transform.position[2]);[a,b,c,]
Then in the the orientation I’m guessing it will need something along these lines
if (transform.position[0] > (compwidth/2)+100)
{[0,60,0];}
else
{ [0,0,0] ; }
if (transform.position[0] < (compwidth/2)-100) {[0,300,0];} else { [0,0,0] ; } Obviously this isn't right but it gives you an idea of at what points the angle of the albums needs to be but I would also like them to smoothly rotate and not pop into position like the above expression makes them do. Any help would be most appreciated Thank You