skip to Main Content

Generating Overlap Events

In Unreal Engine 4 provides an easy way to generated overlap events. Overlap events consist of BeginOverlap and EndOverlap. In this tutorial I’m going to create a custom trigger that uses both functions.

Creating a Custom Trigger Box

In order to create a custom trigger box add a new C++ class which inherits from the TriggerBox class. Then, add the following functions into the header file:

Mark the functions with the UFUNCTION macro otherwise these functions won’t fire.

Implementing the logic of the Custom Trigger

In order for the events to fire, first we need to register that we want to be informed when an actual overlap occurs. The best place to register these events is right after the BeginPlay function. To do so, type the following implementation of the BeginPlay in your source file (the implementations of both OnTriggerEnter and on TriggerExit are included) :

That’s it, to test your trigger, create a Blueprint based on the above class and place it in your level (don’t forget to resize the box from the Editor). Then, control your character and test both overlaps. Your output should be similar to the image below:

overlap_events

Avatar photo

This Post Has One Comment

Leave a Reply to Onai Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Back To Top