Cinemachine DollyCart not working when position is animated in Timeline

Hi,

I’m animating the movement of a GameObject (not a virtual camera) with a DollyCart and a Cinemachine path.
I’m animating the Position parameter of the dolly cart in the timeline, and it seems to work just fine in the editor. However, in Play Mode my object does not move. It jumps to the end of the path once timeline is finished.
I can make the object follow the path if it I disable the timeline and just use the speed parameter, but this is not what I want as I need to control explicitly the position along the path.
I’m using Cinemachine 2.6

I think I got it. I have to set the Update method to LateUpdate. Right?

LatUpdate in this case is a good idea because Timeline does its stuff sometime between Update and LateUpdate, and you want the position to get processed by the cart after timeline sets it.