Not sure how to use Event Actor Begin Overlap

I’m having trouble with an overlap event, mostly because I just don’t know how to feed it the actor I want it to collide with. I saw the image below while googling my problem, but can’t seem to figure out what it is: can someone help me out really quick? Sorry for the basic question.

91420-beginoverlapex.jpg

That’s an equal to object node, you plug that in to your other actor pin on your begin overlap node and the other pin will be a reference to the actor that you want the overlap to recognise. Then you link your equal object node to a branch then from that you can do what you like.

There’s an image here in this documentation which shows this method if you scroll down a little bit: Events

Alternatively try using a cast node; from your other actor pin create a cast node by typing the name of the actor you want the overlap to pick up, you should get a node that says ‘Cast to BP_thirdpersoncharacter’ or whatever actor it is, then from that you can do any other functionality after. Casting

That helped a lot, but now it’s just not working.
What I’m trying to do is get it where whenever a box reaches one of the two points it moves between, a door will raise. Right now, the door refuses to move. I set up a Begin Overlap node with the target point being the actor the box needs to overlap.

Target points don’t actually have any collision on them so they wouldn’t get picked up by overlap events, you would need to use an object that can generate overlap events or try creating a custom actor with a box collision that could be picked up by overlap events. So when your box intersects that collision it should activate your door.

I would recommend you adding a box collision in your viewport’s blueprint and start overlaping events from it.

Oh, my bad. Thanks a ton.

Thank you!

Glad it helped (: Cheers!