You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb kiaran.ritchie #preflight https://horde.devtools.epicgames.com/job/63d29c085354589b5c5e6c02 #JIRA https://jira.it.epicgames.com/browse/UE-178881 [CL 24467630 by kiaran ritchie in ue5-main branch]
15 lines
356 B
C++
15 lines
356 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "SkeletalMeshNotifier.h"
|
|
|
|
FSkeletalMeshNotifyDelegate& ISkeletalMeshNotifier::Delegate()
|
|
{
|
|
return NotifyDelegate;
|
|
}
|
|
|
|
void ISkeletalMeshNotifier::Notify(const TArray<FName>& BoneNames, const ESkeletalMeshNotifyType InNotifyType) const
|
|
{
|
|
NotifyDelegate.Broadcast(BoneNames, InNotifyType);
|
|
}
|
|
|