Homing Projectile that has a chance to miss?

Looking to achieve a projectile that when fired will home towards another object or class, but has the capability to miss. The projectile should not hard seek, if the object moves, the projectile should be able to miss the target. But the projectile must move towards the object enough to be able to hit it when moving.

Can you just reduce the HomingAccelerationMagnitude to achieve what you want? If not, I suggest saving off the homing target location when the projectile is created and then in the tick function check to see if that location has changed. If so, add whatever logic you want.

I agree with rcdarcey. If I’m not wrong you are trying to achieve something like the homing soulmass from Dark Soul. You can easily reach it creating a timer function in your missile’s actor that turn it on your target (you can get the rotation with the “Look at” node), the timer delay should menage the “precision” of the missile. Obviously the missile’s actor have to move long the X axis.

I used HomingAccelerationMagnitude, simply by referencing the Projectile component that was in my projectile BP, branching off a SetProjectileHomingAccelerationMagnitude and connected its component to my character bp. Thank you!! Other ways using the node had a whole bunch of clutter