fix: ShoseClickHandler加全量点击诊断日志+collider强制enabled+匹配双名称

This commit is contained in:
yangbear
2026-07-06 04:22:18 +08:00
parent 44a87df00b
commit 5a394e8cad
14 changed files with 203 additions and 15 deletions
@@ -11,14 +11,13 @@ public class ShoseClickHandler : MonoBehaviour
{
var col = GetComponent<Collider>();
if (col == null) col = gameObject.AddComponent<SphereCollider>();
if (col is SphereCollider sc) { sc.radius = 1.2f; sc.isTrigger = false; }
var drag = GetComponent<DraggableObject>();
if (drag != null) Destroy(drag);
col.enabled = true;
if (col is SphereCollider sc) { sc.radius = 1.5f; sc.isTrigger = false; }
CreateOutlineMesh();
StopAllCoroutines();
StartCoroutine(BlinkOutline());
_clicked = false;
Debug.Log($"[ShoseClick] OnEnable outline={_outlineMesh!=null} col={((SphereCollider)col).radius}");
Debug.Log($"[ShoseClick] OnEnable obj={gameObject.name} outline={_outlineMesh!=null} col enabled={col.enabled} radius={((SphereCollider)col).radius}");
}
void CreateOutlineMesh()
@@ -50,13 +49,20 @@ public class ShoseClickHandler : MonoBehaviour
void Update()
{
if (_clicked || !Input.GetMouseButtonDown(0)) return;
foreach (var cam in Camera.allCameras)
var cams = Object.FindObjectsOfType<Camera>();
foreach (var cam in cams)
{
if (!cam.enabled) continue;
var hits = Physics.RaycastAll(cam.ScreenPointToRay(Input.mousePosition), 100f);
var hits = Physics.RaycastAll(cam.ScreenPointToRay(Input.mousePosition), 200f);
if (hits.Length > 0)
{
var names = new System.Text.StringBuilder();
foreach (var h in hits) names.Append(h.collider?.gameObject?.name ?? "null").Append(", ");
Debug.Log($"[ShoseClick] ★ Update click! hits={hits.Length} — {names}");
}
foreach (var h in hits)
{
if (h.collider != null && h.collider.gameObject == gameObject)
if (h.collider != null && (h.collider.gameObject == gameObject || h.collider.gameObject.name == gameObject.name))
{
OnClicked(); return;
}
@@ -67,10 +73,11 @@ public class ShoseClickHandler : MonoBehaviour
void OnClicked()
{
_clicked = true;
Debug.Log("[ShoseClick] ★ 被点击了 ★");
Debug.Log($"[ShoseClick] ★ {gameObject.name} 被点击了 ★");
StopAllCoroutines();
if (_outlineMesh != null) _outlineMesh.enabled = false;
if (targetPoint != null) { transform.position = targetPoint.position; transform.rotation = targetPoint.rotation; }
if (targetPoint != null) { transform.position = targetPoint.position; transform.rotation = targetPoint.rotation; Debug.Log($"[ShoseClick] 移动到 {targetPoint.name}"); }
else Debug.LogWarning("[ShoseClick] targetPoint 为空");
if (nextObject != null) nextObject.SetActive(true);
}
}