From f6bc4689e8c96778177bd15a78e69861309efc93 Mon Sep 17 00:00:00 2001 From: "ALIENJACK\\alien" Date: Mon, 6 Jan 2025 20:31:20 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E9=99=A4gamma=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Assets/Script/AppMain/UI/XMBBackGround.shader | 6 ------ 1 file changed, 6 deletions(-) diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBBackGround.shader b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBBackGround.shader index 8491a00d..3c5de6f2 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBBackGround.shader +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBBackGround.shader @@ -32,8 +32,6 @@ _Power2("Power",Float)=50.0 _Frequency2("Frequency",Float)=2.1 _Speed2("Speed",Float)=0.3 - - _Gamma("GAMMA",float) = 2.2 } SubShader @@ -154,8 +152,6 @@ float _Frequency2; float _Speed2; - float _Gamma; - fixed4 frag(v2f IN) : SV_Target { float2 uv= IN.texcoord; @@ -200,8 +196,6 @@ clip (fragColor.a - 0.001); #endif - fragColor = pow(fragColor,1/_Gamma); - return fragColor; }