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

29 lines
538 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "InterchangeTextureNode.h"
#include "InterchangeTexture2DArrayNode.generated.h"
UCLASS(MinimalAPI, BlueprintType)
class UInterchangeTexture2DArrayNode : public UInterchangeTextureNode
{
GENERATED_BODY()
public:
/**
* Return the node type name of the class. This is used when reporting errors.
*/
virtual FString GetTypeName() const override
{
const FString TypeName = TEXT("Texture2DArrayNode");
return TypeName;
}
};