From 1551364fb31dbd8f18a005851f34b52eb470ef58 Mon Sep 17 00:00:00 2001 From: yangbear Date: Sun, 5 Jul 2026 02:27:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=82=B9=E5=87=BB=E5=90=8E=E8=BE=B9?= =?UTF-8?q?=E6=A1=86=E6=B6=88=E5=A4=B1=E8=80=8C=E9=9D=9E=E4=BF=9D=E6=8C=81?= =?UTF-8?q?=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/Interaction/ChanraoTuibuHandler.cs | 2 +- Assets/Scripts/Interaction/PingClickHandler.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/Interaction/ChanraoTuibuHandler.cs b/Assets/Scripts/Interaction/ChanraoTuibuHandler.cs index 8722ed9..6fbff55 100644 --- a/Assets/Scripts/Interaction/ChanraoTuibuHandler.cs +++ b/Assets/Scripts/Interaction/ChanraoTuibuHandler.cs @@ -79,7 +79,7 @@ public class ChanraoTuibuHandler : MonoBehaviour if (_meshRenderer != null) _meshRenderer.enabled = true; var allRends2 = GetComponentsInChildren(); foreach (var r in allRends2) r.enabled = true; - if (_outlineRenderer != null) _outlineRenderer.enabled = true; + if (_outlineRenderer != null) _outlineRenderer.enabled = false; if (nextObject != null) { nextObject.SetActive(true); Debug.Log($"[ChanraoTuibu] → {nextObject.name} 已激活"); } } } diff --git a/Assets/Scripts/Interaction/PingClickHandler.cs b/Assets/Scripts/Interaction/PingClickHandler.cs index cffa947..30863e7 100644 --- a/Assets/Scripts/Interaction/PingClickHandler.cs +++ b/Assets/Scripts/Interaction/PingClickHandler.cs @@ -112,7 +112,7 @@ public class PingClickHandler : MonoBehaviour if (_meshRenderer != null) _meshRenderer.enabled = true; var allRends2 = GetComponentsInChildren(); foreach (var r in allRends2) r.enabled = true; - if (_outlineRenderer != null) _outlineRenderer.enabled = true; + if (_outlineRenderer != null) _outlineRenderer.enabled = false; if (nextPing != null) { nextPing.SetActive(true); Debug.Log($"[PingClick] {name} → {nextPing.name} 激活"); } Debug.Log($"[PingClick] {name} 第1击 (model显示, {_firstClickCount}/4)"); var sm = FindObjectOfType();