If I set a property, does the animation get cancelled?

Let’s say I animate a property like

gui.animate(self.progress_bar_foreground, "size.x", size_x, gui.EASING_LINEAR, 0.25, 0, nil, gui.PLAYBACK_ONCE_FORWARD)

If I set the property DURING the animation like

gui.set_size(self.progress_bar_foreground, vmath.vector3(self.progress_bar_foreground_size_x_max, self.progress_bar_foreground_size.y, self.progress_bar_foreground_size.z))

…does the animation get cancelled?

I couldn’t find any reference in the docs:

Maybe you should update the docs if the answer is yes.

No I don’t think the animation gets cancelled. It should be very easy for you to test.