Great tutorial. It would be cool if you could briefly explain WHY your doing certain steps (for instance, why two different gradient layer boxes, and why the use of multiple instances of "All Row" to create shadow and light). It would certainly help so that techniques could be applied to other projects. Thank you, and keep up the great work!
Hey @effectforyou is there a way to make this animation using a mask or something like that where the only cards that flip are those where the image changes? thanks
Great effect, well done. I do have trouble with the script though. It is to difficult to read here and correctly type into the expression. Could you possibly document the Script here to copy and paste......Much appreciate your great work.
@@EffectForYou thank you for the response. Great idea to have a FAQ, I realize we must be annoying sometimes. I have actually copied your instructions for this tutorial and not downloaded your template. I wanted to learn to create this myself and almost succeeded. I made variations to the flip similar to yours and wondered how you have made some intermittent flips out of sequence, and assume that maybe what the script does. Anyway, thanks again for the great work you do, it is awesome. If you can flick that script up, it would be fantastic. Cheers
n = 0; if (numKeys > 0){ n = nearestKey(time).index; if (key(n).time > time){ n--; } } if (n == 0){ t = 0; }else{ t = time - key(n).time; } if (n > 0){ v = velocityAtTime(key(n).time - thisComp.frameDuration/10); amp = .05; freq = 4.0; decay = 2.0; value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t); }else{ value; }
Hello, I am recently starting to watch your tutorials. Very good. But they tend to insert expressions, and I don't know how to find them. Please can you help me. Thank you.
n = 0; if (numKeys > 0){ n = nearestKey(time).index; if (key(n).time > time){ n--; } } if (n == 0){ t = 0; }else{ t = time - key(n).time; } if (n > 0){ v = velocityAtTime(key(n).time - thisComp.frameDuration/10); amp = .05; freq = 4.0; decay = 2.0; value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t); }else{ value; }
I have tried to make same but I have some queries regarding this tutorial- How you have managed to add lights over 2d layers I have tried but it is not working at all and my other query regarding this video is when I have added the radial shadow and changing its value it is not showing any effect??
When You create shape 09:27 at that time you have to convert shape into 3D layer, and when you pre compose all the shape then then turn on collapse transform Iocn 03:43 that's help you to manage the lights. Same you need to turn on the collapse transform icon when you apply radial shadows 08:21
n = 0; if (numKeys > 0){ n = nearestKey(time).index; if (key(n).time > time){ n--; } } if (n == 0){ t = 0; }else{ t = time - key(n).time; } if (n > 0){ v = velocityAtTime(key(n).time - thisComp.frameDuration/10); amp = .05; freq = 4.0; decay = 2.0; value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t); }else{ value; }
n = 0; if (numKeys > 0){ n = nearestKey(time).index; if (key(n).time > time){ n--; } } if (n == 0){ t = 0; }else{ t = time - key(n).time; } if (n > 0 && t < 1){ v = velocityAtTime(key(n).time - thisComp.frameDuration/10); amp = .06; freq = 3; decay = 5.0; value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t); }else{ value; }
I saw all the comments and got lazy to look for it so I decided to type it myself from the video. I just tested it and it works: amp = .1;// freq = 5;// decay = 7;// n = 0; if (numKeys > 0){ n = nearestKey(time).index; if (key(n).time > time){ n--; } } if (n == 0){ t = 0; }else{ t = time - key (n).time; } if (n > 0){ v = velocityAtTime(key(n).time - thisComp.frameDuration/10); value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t); }else{ value; }
n = 0; if (numKeys > 0){ n = nearestKey(time).index; if (key(n).time > time){ n--; } } if (n == 0){ t = 0; }else{ t = time - key(n).time; } if (n > 0){ v = velocityAtTime(key(n).time - thisComp.frameDuration/10); amp = .05; freq = 4.0; decay = 2.0; value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t); }else{ value; }
I saw all the comments and got lazy to look for it so I decided to type it myself from the video. I just tested it and it works: amp = .1;// freq = 5;// decay = 7;// n = 0; if (numKeys > 0){ n = nearestKey(time).index; if (key(n).time > time){ n--; } } if (n == 0){ t = 0; }else{ t = time - key (n).time; } if (n > 0){ v = velocityAtTime(key(n).time - thisComp.frameDuration/10); value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t); }else{ value; }
@@barrettodonnell4357 i think it was because t needed to be defined insde the last brakets but i no longer have acces to that file to double check it. sorry
존경스럽네요....역시 아름다운 뒤에는 상당한 노고가 있었네요^
Wow very nice !!! Thank you so much
You are amazing.we all love you somuch.
Thanks for sharing your knowledge with us. This effect is awesome indeed brother!
Thank you!
Well done! Perfect!
That was soooo AWEEEEEEEEEEEEEEEEESOM Thank you brother, i am learning so much thanks to you, keep up the good work
Thanks!!!Very awesome!!!
wow, very nice
Thanks so much! Hugs from Equator!! 💪🏽
thanks!
wow~ wonderful! thank you~
Awsome tutorial, thank u so much for this
Love you Sir,
Please use other picturs not girls
So nice
GOOOOD 💯💯💯💯
done it ! Looks great ! Thx mate !!!
Great tutorial. It would be cool if you could briefly explain WHY your doing certain steps (for instance, why two different gradient layer boxes, and why the use of multiple instances of "All Row" to create shadow and light). It would certainly help so that techniques could be applied to other projects. Thank you, and keep up the great work!
2nd Use of gradient its give the shine effect of our flip box.
Wow excellent job!
Thank you so much for this amazing tutorial 😍
Fantastic job! Thanks a lot bro:D
Wooow amazing ❤
Hey @effectforyou is there a way to make this animation using a mask or something like that where the only cards that flip are those where the image changes? thanks
Very useful tutorial.
Excellent..
Amazing 🤠
Amazing!
Great effect, well done. I do have trouble with the script though. It is to difficult to read here and correctly type into the expression.
Could you possibly document the Script here to copy and paste......Much appreciate your great work.
Watch my most asked questions video
@@EffectForYou thank you for the response. Great idea to have a FAQ, I realize we must be annoying sometimes.
I have actually copied your instructions for this tutorial and not downloaded your template. I wanted to learn to create this myself and almost succeeded. I made variations to the flip similar to yours and wondered how you have made some intermittent flips out of sequence, and assume that maybe what the script does.
Anyway, thanks again for the great work you do, it is awesome.
If you can flick that script up, it would be fantastic. Cheers
Wow
excelente
n = 0;
if (numKeys > 0){
n = nearestKey(time).index;
if (key(n).time > time){
n--;
}
}
if (n == 0){
t = 0;
}else{
t = time - key(n).time;
}
if (n > 0){
v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
amp = .05;
freq = 4.0;
decay = 2.0;
value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
}else{
value;
}
Thank you
I don t know why I do not see the gradient when i click 3d layer . I love the channel
Because change your render setting classic 3D
@@EffectForYou yesss, thanx
Hello, I am recently starting to watch your tutorials. Very good. But they tend to insert expressions, and I don't know how to find them. Please can you help me. Thank you.
Press U twice on your keyboard, so you can see the expressions
@@EffectForYou
I mean, how I access, the expression that you indicate in your tutorial.
@@adrianmarcoletta1525 Hold Alt key and click on stopwatch icon
n = 0;
if (numKeys > 0){
n = nearestKey(time).index;
if (key(n).time > time){
n--;
}
}
if (n == 0){
t = 0;
}else{
t = time - key(n).time;
}
if (n > 0){
v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
amp = .05;
freq = 4.0;
decay = 2.0;
value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
}else{
value;
}
@@chaskapoint4682 thanx =)
where dio i find the script
I have tried to make same but I have some queries regarding this tutorial- How you have managed to add lights over 2d layers I have tried but it is not working at all and my other query regarding this video is when I have added the radial shadow and changing its value it is not showing any effect??
When You create shape 09:27 at that time you have to convert shape into 3D layer, and when you pre compose all the shape then then turn on collapse transform Iocn 03:43 that's help you to manage the lights. Same you need to turn on the collapse transform icon when you apply radial shadows 08:21
whereb is the script that u have used here
please bro ramadan karim animation tutorial
Too bad gradient doesn’t seem too work on 3D layers. It would have been awesome
результат конечно потрясный, но возиться очень долго
Приветствую! Подскажите, как сменить композиции на таймлайне. Время 11:07
The value of the expression is incorrect. I just copied it and pasted it.I don't know what the problem is.
how to get bounce script ?
Where do i get bounce script
Watch this ruclips.net/video/2U12BW7wDak/видео.html
Hi there! I've downloaded bounce script but it isn't .exe file, it is .txt file! So what does need .txt file for?
thank u
Copy and paste on expression layer
n = 0;
if (numKeys > 0){
n = nearestKey(time).index;
if (key(n).time > time){
n--;
}
}
if (n == 0){
t = 0;
}else{
t = time - key(n).time;
}
if (n > 0){
v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
amp = .05;
freq = 4.0;
decay = 2.0;
value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
}else{
value;
}
n = 0;
if (numKeys > 0){
n = nearestKey(time).index;
if (key(n).time > time){
n--;
}
}
if (n == 0){
t = 0;
}else{
t = time - key(n).time;
}
if (n > 0 && t < 1){
v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
amp = .06;
freq = 3;
decay = 5.0;
value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
}else{
value;
}
If i use 10 photo , how long comlete render ?
Depend on your computer specification...
Where's download file??? Give me plz
how can we make last pic effect ?
Please watch full video
hello it will help if you will make subtitle with keys comand.
can you help me with foundind the script file?
Press E double time on your keyboard
@@EffectForYou not working
Watch this video ruclips.net/video/2U12BW7wDak/видео.html
@@EffectForYou can you upload the project file?
Go to my Pateron page
On peux avoir le projet.
Please post the project file. thanks
Nice ,but you didn't show to make
How to start from center
You need to adjust the layer from center,
@@EffectForYou I didn't understand it
If you want to start from center, so keep your center piece layer in first frame, then move other piece layers around 3 to 4 frame forward
Where is download link for script and script is't correct, in my case is't corrent
You can download it from description Now.
Dude you can do this on easiest way, so much job
@@EffectForYou Bro please link
@@EffectForYou where
Please can you send me project i really need it for this ?
The expression link isn't working. the expression shows error too. please help
Press E twice on your keyboard to show expression,
@@EffectForYoucan you kindly give me the expression please? I really need it. please. the link you have given does not work
Sorry bro my mistake, now you can download the Expression from description and it's working
@@EffectForYou where bro cannot find it
hi can you add script
I saw all the comments and got lazy to look for it so I decided to type it myself from the video. I just tested it and it works:
amp = .1;//
freq = 5;//
decay = 7;//
n = 0;
if (numKeys > 0){
n = nearestKey(time).index;
if (key(n).time > time){
n--;
}
}
if (n == 0){
t = 0;
}else{
t = time - key (n).time;
}
if (n > 0){
v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
}else{
value;
}
@@lambasted6886 Thanks mate i was about to do the same until i found your comment! cheers!
КАК СМЕНИТЬ КОМПОЗИЦИИ? КАКИЕ КЛАВИШИ???
11:07
Ctrl+d перенести на нужную comp и отпустить левую клавишу, по моему так
expression file ??
Find link in description
@@EffectForYou thanks ... sorry I missed that in description...
@@EffectForYou where is the link?
n = 0;
if (numKeys > 0){
n = nearestKey(time).index;
if (key(n).time > time){
n--;
}
}
if (n == 0){
t = 0;
}else{
t = time - key(n).time;
}
if (n > 0){
v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
amp = .05;
freq = 4.0;
decay = 2.0;
value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
}else{
value;
}
where is the script?
I saw all the comments and got lazy to look for it so I decided to type it myself from the video. I just tested it and it works:
amp = .1;//
freq = 5;//
decay = 7;//
n = 0;
if (numKeys > 0){
n = nearestKey(time).index;
if (key(n).time > time){
n--;
}
}
if (n == 0){
t = 0;
}else{
t = time - key (n).time;
}
if (n > 0){
v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
}else{
value;
}
You say copy and paste a script that can't be copied and pasted!!
Please watch this ruclips.net/video/2U12BW7wDak/видео.html
amp = .1;//
freq = 5;//
decay = 7;//
n = 0;
if (numKeys > 0){
n = nearestKey(time).index;
if (key(n).time > time){
n--;
}
}
if (n == 0){
t = time - key(n).time;
}
if (n > 0){
v= velocityAtTime(key(n).time - thisComp.frameDuration/10);
value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
}else{
value;
}
Any idea why it's telling me "t is not defined" in the last segment of this script?
@@barrettodonnell4357 i think it was because t needed to be defined insde the last brakets but i no longer have acces to that file to double check it. sorry
@@barrettodonnell4357 amp = .1;//
freq = 5;//
decay = 7;//
n = 0;
if (numKeys > 0){
n = nearestKey(time).index;
if (key(n).time > time){
n--;
}
}
if (n == 0){
t = time - key(n).time;
}
if (n > 0){
t = time - key(n).time;
v= velocityAtTime(key(n).time - thisComp.frameDuration/10);
value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
}else{
value;
}
@@barrettodonnell4357 try it like that i think that solves the issue
how can i get the bounce script
Watch this out ruclips.net/video/2U12BW7wDak/видео.html