-
Mechanical fan with expression
I made a mechanical fan whose blades start rotating and keeps the same speed after 1.5 seconds using AE at work.
Although I am still a novice at Expressions, I managed to make two versions of basically the same thing.Below is the expressions I made.
(to blades’ rotation)
1:non-split layer
if (time <= 1.5)
{
thisComp.layer(“null1”).effect(“Slider Control”)(“Slider”)
}
else
{
value + time*9002:split layer (in point is at 1.5 seconds)
this layer is split in two at 1.5 seconds and the expression is applied to the latter half.thisComp.layer(“wing01_01”).transform.rotation + (time- 1.5)*900
Although I managed to make it, I don’t understand why I needed to subtract 1.5 seconds in the latter parentheses in the second expression.
At first I did the opposite since the layer starts from 1.5 seconds.It might be pretty basic, but anyone care to explain?
Thanks in advance.