Can I enable/Disable gravity for physics objects using a BP?

I want to have a box volume blueprint where everything inside the volume when an event is triggered loses gravity. I don’t want to make all the objects blueprints, I just want to have physics meshes laying around. Is this possible and what nodes do I use?

When your anti-gravity trigger happens do a GetAllOverlappingActors on your volume, in the for each set gravity disabled.

When gravity turns back on do the same but set it on.

Don’t forget to handle objects leaving the box with EndOverlap