Files
UnrealEngineUWP/Engine/Source/Editor/AnimGraph/Classes/AnimationConduitGraphSchema.h
Ben Marsh 7598af0532 Update copyright notices to 2019.
#rb none
#lockdown Nick.Penwarden

[CL 4662404 by Ben Marsh in Main branch]
2018-12-14 13:41:00 -05:00

25 lines
1.0 KiB
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "EdGraphSchema_K2.h"
#include "AnimationConduitGraphSchema.generated.h"
//@TODO: Should this derive from AnimationTransitionSchema (with appropriate suppression of state-based queries)
UCLASS(MinimalAPI)
class UAnimationConduitGraphSchema : public UEdGraphSchema_K2
{
GENERATED_UCLASS_BODY()
// UEdGraphSchema interface
virtual void CreateDefaultNodesForGraph(UEdGraph& Graph) const override;
virtual bool CanDuplicateGraph(UEdGraph* InSourceGraph) const override { return false; }
virtual void GetGraphDisplayInformation(const UEdGraph& Graph, /*out*/ FGraphDisplayInfo& DisplayInfo) const override;
virtual bool DoesSupportEventDispatcher() const override { return false; }
virtual bool ShouldAlwaysPurgeOnModification() const override { return true; }
virtual void HandleGraphBeingDeleted(UEdGraph& GraphBeingRemoved) const override;
// End of UEdGraphSchema interface
};