I did actually. That was the first thing I did after the post. I got kind of a working example, but as I was not sure about if my code actually works (no debugging or logging option, except from a text layer output, which I didn’t want to to ;)) I stopped playing around.
So you would say this works, by increasing the amp value?
I also experienced problems with the following: I assume that the expression code is called everyframe. So how I can I increment a variable during my animation?
So
freq = freq + 0.05; Does not work at all.
I thought maybe by not declaring it at the beginning, but this would make my expression fail.
Is my assumption correct?
My only other idea was to link the freq – or the amp – to time.
So I would set something like this:
amp = time * 0.05
So after the first frame I would have time = 1 and amp = 0.05, right?
And after the second time = 2, amp = 0.1.
I hope I understand the time variable correctly…
Any hints related to these things are welcome :).
Thanks in advance.
Cheers