I created some projectile with bp in which I asked it to ignore the character:
I wrote the character’s attack function in c++ and asked it to ignore the projectile as such:
and I’ve seen people implement attack with bp, tagging an Ignore Actor When Moving node after the Spawn projectile node.
Is this the correct way to avoid collision between the player character and it’s projectile. Does this solution depend on timing (i.e. could collision be resolved before the Ignore…() function is even called)? If no, what does UE do to avoid it?