Call a timeline curve from another blueprint

I have a timeline in my game mode, that contains a curve. In another blueprint, I need to reference that timeline’s output curve. Is there a way to do this?

what you can do :
if they don t need to be sync, you can create external curves on your timeline. and use the asset created on your new timeline.

if you need them to be in sync, you can put the output value of your timeline in a global variable, and then call it on the event tick of your blueprint.

Thanks! I ended up using a global variable, defined in c++ with a get/set.