Moving actor using mouse at specific Z at runtime

I have no clue how to do this. Basically, I want to be able to move the actor along a specific Z value using the mouse - I am making a Tower Defense game, and I need to be able to move the actors along the flat landscape. I don’t really know how Convert Mouse Location To World Space works, nor do I understand dot products or line traces work. Thanks for the help!

Hey Aplepectic! Welcome to the forums!

Don’t worry, you won’t have to use Convert Mouse Location to World Space!

Firstly let’s set up your input!

Go to your main UE page and click “Edit”, and go to Project Settings.
image

Create a new Axis mapping with the + Symbol, and give it an input of mouse Y.
image

image

Next go to your player pawn and add this code. You’ll right click and search for whatever you named your input for Mouse Y to get the event.

That Multiply float * float Node is really important because otherwise you’ll move centimeters with a full mouse movement. Hope this helped! Let us know how it goes!

2 Likes

You will need it sooner rather than later - I’d dig into it right now if I were you. But you can also do this for something truly simplistic:

Just make sure the actor does not block Visiblity:

3 Likes