Unable to get 3rd person point and click to work

ssthor22

New member
I'm trying to setup a simple 3rd person point and click controller using A* pathfinding, which I'm experienced with. I've added the A Star AI Agent Movement ability to the character as instructed in the integrations documentation.

I looked into the script and it looks like the Null References are always raised every time
Code:
m_PlayerInput
is called. The same null references get raised even if I'm not using A* pathfinding. Not sure how to fix this.

1632695369366.png

My Camera Setup:
1632695555537.png

My new character Setup:
1632695636668.png
 
AI Agents do not add the PlayerInput components so that is why you are getting the error. For your setup you should not select AIAgent since you are attaching a camera.
 
Top