Decrease pitch slower than increase

I am using a Timeline to lerp pitch from a min to a max value in a period of time, however when I release the key I want it to lerp from the current pitch to a minimum pitch value much slower. The reverse function of Timelines simply replays the entire action in reverse using the same float track, so I am unable to get this to work. I have tried creating a separate Timeline with a longer float track that is triggered when the key is released, but have not had success getting that to work.

Is there a way to do this?

Yes. Use the setup you currently have ( running a timeline forwards, then backwards ), but you can change the speed the timeline is running with the node SetPlayRate.

Find your timeline variable in the components section of the variables area ( left of BP ), when you drag a pin from it you can get the SetPlayRate node.

When you’re running the timeline backwards just set the play rate to .3, for instance. A third of the speed. :slight_smile: