You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
29 lines
1.1 KiB
C++
29 lines
1.1 KiB
C++
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "K2Node.h"
|
|
|
|
class UEdGraphPin;
|
|
|
|
struct FAnimBlueprintNodeOptionalPinManager : public FOptionalPinManager
|
|
{
|
|
protected:
|
|
class UAnimGraphNode_Base* BaseNode;
|
|
TArray<UEdGraphPin*>* OldPins;
|
|
|
|
TMap<FString, UEdGraphPin*> OldPinMap;
|
|
|
|
public:
|
|
FAnimBlueprintNodeOptionalPinManager(class UAnimGraphNode_Base* Node, TArray<UEdGraphPin*>* InOldPins);
|
|
|
|
/** FOptionalPinManager interface */
|
|
virtual void GetRecordDefaults(UProperty* TestProperty, FOptionalPinFromProperty& Record) const override;
|
|
virtual void CustomizePinData(UEdGraphPin* Pin, FName SourcePropertyName, int32 ArrayIndex, UProperty* Property) const override;
|
|
virtual void PostInitNewPin(UEdGraphPin* Pin, FOptionalPinFromProperty& Record, int32 ArrayIndex, UProperty* Property, uint8* PropertyAddress) const override;
|
|
virtual void PostRemovedOldPin(FOptionalPinFromProperty& Record, int32 ArrayIndex, UProperty* Property, uint8* PropertyAddress) const override;
|
|
|
|
void AllocateDefaultPins(UStruct* SourceStruct, uint8* StructBasePtr);
|
|
};
|