Files
UnrealEngine/Engine/Plugins/Interchange/Runtime/Source/Pipelines/Public/InterchangePipelineHelper.h
2025-05-18 13:04:45 +08:00

18 lines
624 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "InterchangePipelineBase.h"
class UInterchangeFactoryBaseNode;
class UInterchangeSourceNode;
namespace UE::Interchange::PipelineHelper
{
void ShowModalDialog(TSharedRef<SInterchangeBaseConflictWidget> ConflictWidget, const FText& Title, const FVector2D& WindowSize);
// Fills in the FactoryNode's SubPath custom attribute with the SourceNode's sub path prefixes and suffixes
INTERCHANGEPIPELINES_API bool FillSubPathFromSourceNode(UInterchangeFactoryBaseNode* FactoryNode, const UInterchangeSourceNode* SourceNode);
}