移除gamma调整代码

This commit is contained in:
ALIENJACK\alien 2025-01-06 20:31:20 +08:00
parent ef1c43d3fc
commit f6bc4689e8

View File

@ -32,8 +32,6 @@
_Power2("Power",Float)=50.0 _Power2("Power",Float)=50.0
_Frequency2("Frequency",Float)=2.1 _Frequency2("Frequency",Float)=2.1
_Speed2("Speed",Float)=0.3 _Speed2("Speed",Float)=0.3
_Gamma("GAMMA",float) = 2.2
} }
SubShader SubShader
@ -154,8 +152,6 @@
float _Frequency2; float _Frequency2;
float _Speed2; float _Speed2;
float _Gamma;
fixed4 frag(v2f IN) : SV_Target fixed4 frag(v2f IN) : SV_Target
{ {
float2 uv= IN.texcoord; float2 uv= IN.texcoord;
@ -200,8 +196,6 @@
clip (fragColor.a - 0.001); clip (fragColor.a - 0.001);
#endif #endif
fragColor = pow(fragColor,1/_Gamma);
return fragColor; return fragColor;
} }