Files

25 lines
790 B
C
Raw Permalink 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 "EdGraphSchema_K2.h"
#include "PaperZDNotifyGraphSchema.generated.h"
/**
* Schema for the AnimNotify graph
*/
UCLASS()
class UPaperZDNotifyGraphSchema : public UEdGraphSchema_K2
{
GENERATED_UCLASS_BODY()
// UEdSchema Interface //
//virtual void CreateDefaultNodesForGraph(UEdGraph& Graph) const override;
virtual bool ShouldAlwaysPurgeOnModification() const override { return true; }
virtual bool CanDuplicateGraph(UEdGraph* InSourceGraph) const override { return false; }
virtual void GetGraphDisplayInformation(const UEdGraph& Graph, /*out*/ FGraphDisplayInfo& DisplayInfo) const override;
// UEdSchema Interface //
};