Why my actors don't collision against each other?

Hi All:

I have created the most simplest actors to test collision. The two actors have just a box shape in its components and these shapes are set to have collision as “Block All”. Physics simulation is not checked because if checked the two objects fall to the (unexisting) ground. Both have its object type set to WorldStatic and they are both moveable.

One of the actors has in its blueprint a Tick event that updates the actor location by 5 every time in the X axis. This actor is placed in the left side of the map and moves to the right. Also has a “Event Hit” to capture the hit to the other actor. It also has its “Simulation generates hit events” checked to pick the Hit Event.

The other actor doesn’t move and is placed in the right side of the map.

When the objects collides no event is triggered. I’m not sure what is missing.

Try enabling sweep on the actor movement node:

Hey Granjalf-

I’m not seeing an actual collision, the moving box simply passes through the other. Adding Simulate physics to at least one of the two boxes does cause a collision and allows for the hit event to trigger. Depending on what you are trying to do in your game, you could disable gravity in the world settings but I’m sure this will have other effects on your game.

Thanks guys for your answers, As I don’t want Physics simulation in my project the answer from schmit worked me the best.