Documentation
  • Introduction
    • Overview
  • Implementation
    • Getting started
    • Enable Replication
  • Functions
    • Quick Explanation
    • Bind Event
    • Unbind Event
      • Unbind All Events
      • Clear All Events
    • Call Event
    • On Event Called
  • Examples
    • Create a new Payload Object
    • Usage of Payload
    • Multiple Events in one Object
      • Bulk Variant
      • Using Messages
Powered by GitBook
On this page
  1. Functions

On Event Called

Events that are available after adding the EasyEventManager Interface

PreviousCall EventNextCreate a new Payload Object

Last updated 2 years ago

Make sure you have read the Guide!

These are the events that get executed if an event gets called which the object is bound to

C++ Usage

Header file:

virtual void OnEventCalled_Implementation(FName Event, const FString& Message, UObject* Payload);
virtual void OnEventTagCalled_Implementation(FGameplayTag EventTag, const FString& Message, UObject* Payload);

Cpp file:

void AMyActor::OnEventCalled_Implementation(FName Event, const FString& Message, UObject* Payload)
{
   //some code
}

void AMyActor::OnEventTagCalled_Implementation(FGameplayTag EventTag, const FString& Message, UObject* Payload)
{
   //some code
}
Getting Started
Page cover image