Files
UnrealEngine/Engine/Plugins/Mutable/Source/CustomizableObjectEditor/Private/MuCOE/CustomizableObjectPin.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

17 lines
295 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "MuCOE/CustomizableObjectPin.h"
#include "EdGraph/EdGraphPin.h"
bool IsPinOrphan(const UEdGraphPin &Pin)
{
return Pin.bOrphanedPin;
}
void OrphanPin(UEdGraphPin& Pin)
{
Pin.bOrphanedPin = true;
Pin.SetSavePinIfOrphaned(true);
}