Skip to content

Commit

Permalink
Update HairClip shader to be compiled with latest monogame
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanmoffat committed Feb 10, 2022
1 parent 5844315 commit 794129b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified EndlessClient/ContentPipeline/HairClip.xnb
Binary file not shown.
4 changes: 2 additions & 2 deletions EndlessClient/ContentPipeline/Shaders/HairClip.fx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ float4 MainPS(float2 input: TEXCOORD0) : COLOR0
{
float4 color = tex2D(inputTexture, input);
if (color.r == 0x08 && color.g == 0 && color.b == 0)
color.a = 0x00
return color
color.a = 0x00;
return color;
}

technique SpriteDrawing
Expand Down

0 comments on commit 794129b

Please sign in to comment.