Files
UnrealEngine/Engine/Plugins/TextureGraph/Shaders/Layer/ChannelSourceFlat.usf
2025-05-18 13:04:45 +08:00

9 lines
197 B
HLSL

// Copyright Epic Games, Inc. All Rights Reserved.
#include "/Engine/Public/Platform.ush"
float4 Color;
float4 FSH_FlatColorTexture(in float2 uvSource : TEXCOORD0) : SV_Target0
{
return Color;
}