From 7dc80baf055ea5cd4c3f56d0e455e06d8a07e2a3 Mon Sep 17 00:00:00 2001 From: DCFApixels <99481254+DCFApixels@users.noreply.github.com> Date: Sun, 12 Oct 2025 21:12:01 +0800 Subject: [PATCH] fix --- Editor/Settings/DebugXSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Editor/Settings/DebugXSettings.cs b/Editor/Settings/DebugXSettings.cs index fb44f77..e5016b3 100644 --- a/Editor/Settings/DebugXSettings.cs +++ b/Editor/Settings/DebugXSettings.cs @@ -58,7 +58,7 @@ namespace DCFApixels.DebugXCore.Internal DebugX.GlobalGreaterPassAlpha = EditorGUILayout.FloatField("GreaterPassAlpha", DebugX.GlobalGreaterPassAlpha); EditorGUI.BeginChangeCheck(); - tmpValue = EditorGUILayout.Slider(DebugX.GlobalGreaterPassAlpha, 0, 2); + tmpValue = EditorGUILayout.Slider(DebugX.GlobalGreaterPassAlpha, 0, 1); if (EditorGUI.EndChangeCheck()) { DebugX.GlobalGreaterPassAlpha = tmpValue;