First Commit

This commit is contained in:
2025-02-06 22:24:29 +08:00
parent ed7df4c81e
commit 7539e6a53c
18116 changed files with 6181499 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
struct VSOutput
{
float4 PositionPS : SV_Position;
float3 PosInLightViewSpace : LIGHT_SPACE_POS;
float3 NormalWS : NORMALWS;
float2 TexCoord : TEXCOORD;
};
float4 AmbientColor = float4(1, 0.5, 0, 1);
float4 AmbientColor2 = float4(0.5, 1, 0, 0);
float4 main(VSOutput VSOut) : SV_TARGET
{
if (VSOut.PositionPS.x < 400)
return AmbientColor;
else
return AmbientColor2;
}