Collision detection without predefined actions

I am using SphereComponent to handle collision between my character and all other objects. This component already executes some default logic upon a collision. I don’t want that. All I want from that component is to allow me to use SafeMoveUpdatedComponent. How to do that?

I tried setting all the physics stuff to 0 when a collision is detected, but that is ugly and doesn’t work properly.

Seems like doing “SetSimulatePhysics(false)” in the constructor was the bad part. Moved to BeginPlay() and works now.