my projectile hitting to my character and pushes it.

fireball hitting to my character and pushes me. i tried to ignore pawn but didnt work. it should hit to enemy and walls or smth. when i print the component that fireball hit. it says third person character collision cylinder.



First off, your Projectile structure is wrong

  • Collision component (root)
  • Visual elements (child of root)
  • Projectile movement component

Visual elements should not have collision enabled. They are visual only.
Do not enable physics. If Physics is enabled on the collision component, then PMC auto-disables on projectile launch.

1 Like


thank you i changed these settings. still dont know why my projectile hitting my character.

Verify collision settings.


sphere collision like this. where should i check other?

HELP ME PLEASEEEEE

make sure the character cant step on it either. and turn off CanEverAffectNavigation

an easy solution though is to use overlap instead of hit, this has the added bonus of allowing for penetrations too