Files
UnrealEngine/Engine/Source/Runtime/Datasmith/CADKernel/Base/Private/Topo/TopologicalShapeEntity.cpp
2025-05-18 13:04:45 +08:00

16 lines
292 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Topo/TopologicalShapeEntity.h"
namespace UE::CADKernel
{
void FTopologicalShapeEntity::CompleteMetaDataWithHostMetaData()
{
if (HostedBy != nullptr)
{
Dictionary.CompleteDictionary(HostedBy->GetMetaDataDictionary());
}
}
}