click event not working properly - mouse offset ?

Hi,

I’m starting fresh as a newbie with a new game and trying to get a few basic things up and running.

  1. I enabled click events in the level BP.
  2. I created a BP actor with a static mesh and an on-click event, using a print string to see the result.

In play mode, clicking on the actor sometimes (or only in a specific area) triggers the event. In some cases, even clicking outside of the actual mesh works.

Unfortunately, this issue is also happening with the mouse-over events. I would appreciate your help.

Thanks!

1 Like

Just to clarify, in LB, on Begin Play, you enabled click / hover events of the Player Controller, right?


The only thing that comes to mind is collision. Either of that cube or of something else that sits between the camera and the cube and intercepts the clicks. In the editor viewport, outside of PIE (Play in Editor), press Alt+C to visualise collision - how does it look?

Hi.

Thank you so much. The trick with the collision helped. :smiley:
I had an other invisible object close to the clickable object. Shame on me. :face_with_open_eyes_and_hand_over_mouth:

It is still not working on the whole static mesh but way better then before.

Thank you! :+1:

Try this and see what it Prints when you click the mesh and it does not work.

1 Like

Thank you for your quick and very helpful response.
Even for me, it was simple to rebuild this easy BP. :slight_smile:

It seems that the cursor location is based on its actual position on the screen when starting the game. I tried to center the cursor as shown in this video:

But now the cursor is at the top left of the screen, which is the same issue as mentioned in the comment under the video. So I disabled the code again.

I tried to start the game with the cursor in the middle of the crosshair. Here, I noticed that the cursor seems to move faster or slower than the viewport change/camera view, or it might be offsetting? I’m not sure about that.


The crosshair is pointing at the wooden sheets (BP to open the menu), but the click actually refers to the furniture to the left/below it.

Thank you so far.

I do not understand what cursor positioning has to do with any of it. Are you trying to select / highlight elements that are in the centre of the screen? If so, using a cursor is not the way to do it. It will introduce lag and many other inconsistencies.


It’s a matter of a simple manual trace instead. Could you clarify? Especially the bit about the cursor / screen centre:

  • is the user expected to move the cursor separately from the camera?
  • or is the “cursor” merely a visual indicator of where the screen centre is and we pick items following camera’s forward vector? (like in many 1st person perspective games)

Yes, I try to select/highlight elements that are in the center of the screen.
The user is not supposed to move the cursor separately from the camera.

My actual goal is to build a VR game in which you can open a menu and press buttons without any input other than looking at a specific point for a certain amount of time. (“On Hovered event” with a timer?)
For demo purposes, and due to not having a working VR setup right now, I’ve set it up as a first-person-game.

I started with a click instead of hovering over for ease of use.
I already tried this great tutorial that relies on “Line Trace by Channel.”

It didn’t work at first, so I tried a different approach (click events and so on).
I think I need to dive deeper into this. I will follow this video again and see if it gets me to the desired solution.

Thank you so far.

Do consider the standard trace + interface combo for this:

Another one:

This one has an example project attached.


There’s, of course, tons of tut on this:

Since this is one of the more common interactions.


The gist is that you trace using a camera forward vector. The crosshair is just a visual reference. You should not use a mouse cursor, especially considering the VR implementation where there is a very different pointing device.

1 Like

Thank you.

In my game, the line tracing is also a little off…

I’m going to start fresh with a first-person template.
In this template, the line tracing works as intended. :slightly_smiling_face:

I started with an empty game, so just importing the first-person content isn’t working properly.

Thank you very much for helping me out. Game development is completely new to me.