Files
UnrealEngine/Engine/Plugins/Mutable/Source/CustomizableObjectEditor/Private/MuCOE/CustomizableObjectPin.cpp
2025-05-18 13:04:45 +08: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);
}