Files
UnrealEngine/Engine/Plugins/Mutable/Source/MutableTools/Private/MuT/NodeComponentEdit.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

22 lines
353 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "MuT/NodeComponentEdit.h"
#include "MuT/NodeComponentNew.h"
#include "MuT/NodeSurface.h"
namespace UE::Mutable::Private
{
const NodeComponentNew* NodeComponentEdit::GetParentComponentNew() const
{
if (Parent)
{
return Parent->GetParentComponentNew();
}
return nullptr;
}
}