Ah I see, well that shouldn’t cause you that much trouble.
Click onto your Pressure plate and find OnComponentBeginOverlap (should have big green + next to it). Click on that plus and this should add OnComponentBeginOverlap method to the object Blueprint. From there you can drop any method from your C++ component attached to Pressure Plate that is marked as BlueprintCallable.
I assume this won’t give you definite answer, but hopefully will set you on the path, so at least you will know what to look for. If you have any questions, I’ll do my best to try to answer (unfortunately I can’t access UE at the moment to offer you image guide)
Many thanks for your reply ex3me, but I’m not sure how to translate either of those links into an answer. I’m absolute beginner with c++ and Unreal, what I’m trying to do is just a tiny part of a challenge I’ve been given during a course/lesson.
I’m more or less looking for a method to say “Any Actor”, literally any actor in the world, so I can say “Hey trigger volume, trigger when an actor enters you. Any actor.”
If no such method exists, I’d be surprised but I would understand.
If the array that you pass to the method is not empty, then there is at least one overlapping actor and you can proceed.
However, if you want to watch for every overlap continuously, using this method is quite heavy on the performance side. In this case, it is better to subscribe to the ActorOverlap event. Here you can find how to do it in C++.