From 3cbd668fc77ac3b99e99686f7a87622fb51e337a Mon Sep 17 00:00:00 2001 From: bottlefish <781230111@qq.com> Date: Fri, 10 Apr 2026 20:19:04 +0800 Subject: [PATCH] =?UTF-8?q?fix(fix-system):=20=E8=B0=83=E6=95=B4=E7=81=AB?= =?UTF-8?q?=E5=B1=B1=E7=83=AD=E5=9B=BE=E6=B8=A9=E5=BA=A6=E6=98=A0=E5=B0=84?= =?UTF-8?q?=E5=8C=BA=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made-with: Cursor --- Assets/Scripts/FixSystem/HeatMap/HeatMapController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/FixSystem/HeatMap/HeatMapController.cs b/Assets/Scripts/FixSystem/HeatMap/HeatMapController.cs index daa2f35fa..f3bdc1c17 100644 --- a/Assets/Scripts/FixSystem/HeatMap/HeatMapController.cs +++ b/Assets/Scripts/FixSystem/HeatMap/HeatMapController.cs @@ -184,7 +184,7 @@ public class HeatMapController : MonoBehaviour } else if (tempture >= 0 && tempture <= 1) { - uftempture = Mathf.Lerp(1.5f, 2.8f, tempture); // 线性插值 + uftempture = Mathf.Lerp(2.5f, 3.3f, tempture); // 线性插值 modulesTempture = Mathf.Lerp(1.5f, 1.8f, tempture); backtemture = Mathf.Lerp(1.5f, 2.25f, tempture); }