Unable to move actor

Hi all,
I have this very simple script:

For some reason the set actor location node isn’t changing the location of the actor!

If I wire a set actor location node into an event play, it sets the location, but using this custom event it doesn’t!

EDIT: If you’re wondering how the custom event fires it’s fired from a different blueprint actor in the scene. Here’s the code for it:


The array has a few actors that share the same class and it should in theory, when overlapped by the player’s capsule, move every actor in the array.

Hey,

is everything firing properly? Is the timeline playing as expected and outputting the right values?

Is the Delta Value changing?
What happens if the Move event only calls SetActorLocation? Does it set it correctly?

Also, can you post a screenshot of how you execute that custom event?

If I just skip the timeline part and set the actor location to 0,0,0 it doesn’t do anything

The delta value changes. If I skip the timeline part and just have this:

31512-capture.png

Nothing happens either.

Are you sure it doesn’t move at all? Or just very very slightly?

Because “Get Actor Up Vector” gets the vector straight upward from your actor with the length of exactly one unit. You multiply that with the movement value but I’m not sure at all what this is and if it’s something small well… it won’t move.

The same if your timeline is not changing a lot.

Yea, the timeline is working fine.
If I just wire it into a set actor location node, nothing happens.

31512-capture.png

I’ve added to my main post how the custom event if executed.

Stupid question, but is the actor set to movable? Or is it static?

Does your “Move” Function fire at all? Or could it be that the “Is Valid” for the last entry of the array is doing something weird? Why not just check for every actor from the “ForEachLoop” if it’s valid?

As @lonerider543 said, my blueprint was not set to moveable :(.

I feel kind of ashamed but as long as the blueprint is set to movable everything works.
Thanks for everyone’s help with troubleshooting, I’ve upvoted you all!

Cheers!

This worked for me too. I share your shame ):