what are you trying to achieve?
move from A to B in an elapsed time? (lets say 1 sec)
if so you can use a timeline from 0 to 1 and use the output as the alpha of a lerp node like this:
2 Likes
Eldany’s suggestion to use timeline is probably best solution outside of adding an ai controller.
That said, if you really want to verp to a set loc command, should probably feed the interp the actual world delta and the actor’s current loc:
vinterping from start will basically try to reset the movement every time the timer ticks.
If using the character class as AI you absolutely need an AI Controller applied. Without it CMC doesn’t work. You’d also use the Move To node.
Op as far as noted is moving a simple Actor. Lerp is the better option overall.