像素化

This commit is contained in:
SoulliesOfficial
2025-06-30 09:25:29 -04:00
parent f31d77197b
commit e91f378989
19 changed files with 16279 additions and 17232 deletions

View File

@@ -0,0 +1,21 @@
Shader "Hidden/Custom/Pixelate"
{
SubShader
{
Tags { "RenderPipeline" = "UniversalPipeline" }
Pass
{
Name "Pixelate Pass"
ZTest Always
Cull Off
ZWrite Off
HLSLPROGRAM
#pragma vertex PixelatePassVert
#pragma fragment PixelatePassFrag
#include "PixelatePass.hlsl"
ENDHLSL
}
}
}