Side-scrolling platformer: Gradual Character Turn

I was using the below nodes to make the character snap 180 degrees but i need it to make the character turn more naturally. Specifically, i want the character to momentarily face the player as he turns the opposite direction. Nodes

Look into the Lerp node (Lerp | Unreal Engine Documentation)

Or you could make a timeline (https://docs.unrealengine.com/latest/INT/Engine/Blueprints/UserGuide/Timelines/)

If you go down the Lerp route you’re probably going to need to hook it up to tick with some gates to get it to look right, if you go down the timeline route it will probably be a little easier.

To do this with a timeline on > 0 play it and on < 0 play in reverse and just have the values range from -90 to 90 on the curve and setup the time to be whatever you want. If you need I can code it up and post a SS for you