Why is the code not getting the cursor location.
- we can’t see the script in the function
- does the input trigger?
- the title vs what is shown is confusing - you ask about cursor position but try to find world location. Are you trying to project mouse location to world? If so, see the 1st bullet point.
Besides that, tracing returns Hit Data
- check what you’re hitting.
And lastly: using data pins from other execution branches is asking for trouble:
Avoid it. It might as well the the reason this is not working - imagine what would happen if Started
never triggers - not only would you have stale boolean data but it will actually return False
when you do not want it to. Were you to trigger Started, the data could be valid.