Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Misc > API/Runtime/Core/Misc/FCoreDelegates
References
Module | Core |
Header | /Engine/Source/Runtime/Core/Public/Misc/CoreDelegates.h |
Include | #include "Misc/CoreDelegates.h" |
Syntax
static OnGetOnScreenMessages;
Remarks
Called when displaying on screen messages (like the "Lighting needs to be rebuilt"), to let other systems add any messages as needed Sample Usage: void GetMyOnScreenMessages(FCoreDelegates::FSeverityMessageMap& OutMessages) { OutMessages.Add(FCoreDelegates::EOnScreenMessageSeverity::Info, FText::Format(LOCTEXT("MyMessage", "My Status: {0}"), SomeStatus)); }