Why does my timeline do nothing for half its length?

I have a timeline moving this enemy with a lerp. It should travel for two seconds then teleport back, but it finishes halfway through it’s length then just sits for the remainder. Does anyone know a way to fix this?

1 Like

With timelines, you have to calculate the start and end points before starting the timeline. Put them in variables.

Here, you’re sampling the location at the same time as trying to set it :slight_smile:

1 Like

Thanks so much.