[Tutorial] How To Code Animation

http://community.facer.io/t/tutorial-how-to-animated-gifs/6007

Try to use this tutorial to animate images.

1 Like

Ok, thank you. I am using 6 images and the playback for 6 is very fast. I am not looking for ā€œsmooth animationā€, I am looking for ā€œimageā€¦imageā€¦imageā€¦ETCā€. I think the key is to multiply my seconds and ms *2. This will give me double the ms to divide by my 6 images. But, I am unsure of where to do my multiplying. Am I on the right path? Is this possible? Any help will be greatly appreciated.

Check out some of the other tutorials Iā€™ve put together on animations: Facer Tutorials

What may work is the ā€œLong Durationā€ animation. Just set the times as something like this:

$(#DWE#)>(1*1)&&(#DWE#)<=((1+1)*1)?100:0$
$(#DWE#)>(2*1)&&(#DWE#)<=((2+1)*1)?100:0$
$(#DWE#)>(3*1)&&(#DWE#)<=((3+1)*1)?100:0$
$(#DWE#)>(4*1)&&(#DWE#)<=((4+1)*1)?100:0$
$(#DWE#)>(5*1)&&(#DWE#)<=((5+1)*1)?100:0$
$(#DWE#)>(6*1)&&(#DWE#)<=((6+1)*1)?100:0$

That should give you 1 picture each second for 6 seconds. Then you just need to decide what you want to do after that. Either place a static frame or put more pictures.

2 Likes

Thank You!!! This helped so much

1 Like