// Copyright Voulz 2021-2025. All Rights Reserved. #include "MovieGraphArchVisDeferredRenderPassNode.h" #include "MovieGraphArchVisDeferredPass.h" #define LOCTEXT_NAMESPACE "FArchVisToolsModule" #if WITH_EDITOR FText UMovieGraphArchVisDeferredRenderPassNode::GetNodeTitle(const bool bGetDescriptive) const { return LOCTEXT("ArchVisDeferredRenderPassGraphNode_Description", "[ArchVis] Deferred Renderer"); } #endif FString UMovieGraphArchVisDeferredRenderPassNode::GetRendererNameImpl() const { static const FString RendererNameImpl(TEXT("[ArchVis] Deferred")); return RendererNameImpl; } TUniquePtr UMovieGraphArchVisDeferredRenderPassNode::CreateInstance() const { return MakeUnique(); } #if WITH_EDITOR FText UMovieGraphArchVisPathTracerRenderPassNode::GetNodeTitle(const bool bGetDescriptive) const { return LOCTEXT("ArchVisPathTracedRenderPassGraphNode_Description", "[ArchVis] Path Traced Renderer"); } #endif FString UMovieGraphArchVisPathTracerRenderPassNode::GetRendererNameImpl() const { static const FString RendererNameImpl(TEXT("[ArchVis] PathTraced")); return RendererNameImpl; } TUniquePtr UMovieGraphArchVisPathTracerRenderPassNode::CreateInstance() const { return MakeUnique(); } #undef LOCTEXT_NAMESPACE