ID:2381276
 
(See the best response by Lummox JR.)
I am currently using animate() for various effects, and I was wondering if it was possible to copy that animation's state once it's already started, so that if I have animate(src, pixel_x = 2, time = 2), it would return pixel_x = 1 after waiting 1/10 sec. I can imagine that another option would require using formulas to return the values that are expected after x time (comparing the time it started, when it'll end, the initial values, and the final ones), but I wanted to know if there was an easier option built-in.

Thank you very much!! :)
Best response
Animation is handled client-side. It's not something the server is meant to be able to read back.
In response to Lummox JR
Lummox JR wrote:
Animation is handled client-side. It's not something the server is meant to be able to read back.

I figured it out after some time. I have however found out a way to achieve the same result (similar to what I described). Thanks! :)