-
Infinity counter
Hey everyone!
I try to create infinity counter with AE expressions.
Thought it would be easy, but no)
I need to reset timer every 10 seconds.
For e.x. try to use the ratio of the number and if statement:
It works every 10 sec. but then the counter continues to increase. 1,2,3…0,11,12,12…0 and etc.if (!(counter%10))
counter = 0;
else
counter = Math.floor(time);