I am currently trying to add some logic to my cars logic.
I want to make it so when the car collides with anything but the landscape and some road meshes i have, it will pause the game and then show a message on screen prompting the user to press a button to restart the game.
So far i have added collision boxes to every mesh ( buildings, trees and car) and checked the simulation generates hit events on all of them.
In the BP_Vehicle bleuprint, containing the logic for throttle, brake etc, i have added this
I notice you haven’t mentioned the actors’ collision profiles! That could be where the issue is. If the vehicle isn’t set to block whatever the tree and buildings are (and vice versa) it won’t do that.
Also you should let us know what actually happens when you try to collide them. There are different things to worry about depending on if they just go through each other, they do collide but there’s no event, et cetera!
I have every collision in my world set to Block All, the car, the buildings, the trees, everything.
What happens is that the car collides with the buildings and the trees normally, however the on Component Hit node never triggers, so the game never pauses.
since i am using the City Samples Vehicles blueprints i saw that they had no collision boxes in their meshes, but adding them changed nothing.
Generating the Trees and the buildings through PCG plays any role?
Can you make just one simple static mesh to test it against, using a static mesh from your PCG stuff? I haven’t used PCG a lot but I do know that it’s likely to cause collision events to be weird.
Just tested the collision to a single static mesh. i also made the pcg to spawn the building as actors (BP_Building blueprint i created) which was suggested as a solution by chatgpt. However, nothing worked and the event never triggers although the car collides normally.
Are there any OTHER collisions that you might have? Can you show your hierarchy on the car actor? It might be that another collider is blocking the mesh itself from having a hit reaction.