Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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;
}