Files
ProjectEleri/Plugins/PaperZD/Source/PaperZDEditor/Private/Graphs/PaperZDNotifyGraph.h

27 lines
690 B
C
Raw Normal View History

2026-07-11 10:43:52 +02:00
// Copyright 2017 ~ 2022 Critical Failure Studio Ltd. All rights reserved.
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "EdGraph/EdGraph.h"
#include "PaperZDNotifyGraph.generated.h"
/**
* A graph that represents an implementation of an Animation Source "Custom notify", on the parent AnimBP.
*/
UCLASS()
class UPaperZDNotifyGraph : public UEdGraph
{
GENERATED_UCLASS_BODY()
public:
/* The name of the notify we're implementing. */
UPROPERTY()
FName NotifyName;
/* True if the notify graph belongs to a valid registered notify, otherwise it belongs to an unregistered notify that hasn't been removed yet. */
UPROPERTY()
bool bRegistered;
};