Files
UnrealEngine/Engine/Source/Editor/BlueprintGraph/Public/AnimNotifyEventNodeSpawner.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

35 lines
889 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "BlueprintEventNodeSpawner.h"
#include "AnimNotifyEventNodeSpawner.generated.h"
#define UE_API BLUEPRINTGRAPH_API
UCLASS(MinimalAPI, Transient)
class UAnimNotifyEventNodeSpawner : public UBlueprintEventNodeSpawner
{
GENERATED_BODY()
public:
/**
* Creates a new UAnimNotifyEventNodeSpawner
*
* @param NotifyName The name you want assigned to the event.
* @return A newly allocated instance of this class.
*/
static UE_API UAnimNotifyEventNodeSpawner* Create(const FSoftObjectPath& InSkeletonObjectPath, FName InNotifyName);
/** @return the skeleton object path */
const FSoftObjectPath& GetSkeletonObjectPath() const { return SkeletonObjectPath; }
private:
/** The skeleton that supplied this notify, used for filtering */
UPROPERTY()
FSoftObjectPath SkeletonObjectPath;
};
#undef UE_API