From 923d76443528b8fa782736caa7b70369e4ec1714 Mon Sep 17 00:00:00 2001 From: Joywayer Date: Tue, 19 May 2026 16:21:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=BC=96=E8=BE=91=E5=99=A8?= =?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/_Game/Scripts/World/LinkedDoorTransition.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/_Game/Scripts/World/LinkedDoorTransition.cs b/Assets/_Game/Scripts/World/LinkedDoorTransition.cs index 3d8abec..5a09335 100644 --- a/Assets/_Game/Scripts/World/LinkedDoorTransition.cs +++ b/Assets/_Game/Scripts/World/LinkedDoorTransition.cs @@ -172,7 +172,7 @@ namespace BaseGames.World string trigger = _autoTrigger ? "Auto" : "Interact"; string linkName = _linkedDoor != null ? _linkedDoor.name : "ęœŖé…åÆ¹"; string keyInfo = _requiresKeyItem ? $" šŸ”‘{_requiredItemId}" : ""; - string grandparent = transform.parent?.parent != null ? $"[{transform.parent.parent.name}] " : ""; + string grandparent = transform.parent != null ? $"[{transform.parent.name}] " : ""; string label = $"{grandparent}{name}\n→ {linkName} | {trigger} | åˆ°č¾¾ęœå‘:{facing}{keyInfo}"; UnityEditor.Handles.color = Color.white;