Is there any way to rotate the PawnSensing Components “peripheral vision” 90 degrees?
I have a crab enemy and I want it to move sideways when using “Move To Location or Actor” so I set the mesh to be facing sideways and I want to move the PawnSensing Component to be also facing sideways.
Unfortunately there is not a way to do this via blueprints, just C++. The eyes will always be located at front and center otherwise. Here’s another thread explaining how that works!
Alternatively, you could just have the crab do periodic sphere trace to the “Left” of it to sense the player if they’re close, instead of PawnSensing.
You could keep the Pawnsensing but at 360 degrees, so you can maintain the system by events, as if it were a trigger. When it is activated, you can calculateas Mind-Brain said.