fix(fix-system): 调整火山热图温度映射区间

Made-with: Cursor
This commit is contained in:
2026-04-10 20:19:04 +08:00
parent 61690f85d7
commit 3cbd668fc7
@@ -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);
}