From 83eeb61088f7868ba0ac9dcd28ee1b31c3c46e5f Mon Sep 17 00:00:00 2001 From: kridoo Date: Mon, 17 Nov 2025 17:25:07 +0800 Subject: [PATCH] 1 --- Assets/Scripts/HandCatch/GrabItem.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Assets/Scripts/HandCatch/GrabItem.cs b/Assets/Scripts/HandCatch/GrabItem.cs index 08770da3..f9025264 100644 --- a/Assets/Scripts/HandCatch/GrabItem.cs +++ b/Assets/Scripts/HandCatch/GrabItem.cs @@ -133,9 +133,7 @@ public class GrabItem : MonoBehaviour { if (other.gameObject.CompareTag("RightHand")) { - SceneMgr.Instance.isTrigger = false; - } } private void OnTriggerStay(Collider other) @@ -190,8 +188,7 @@ public class GrabItem : MonoBehaviour { if (childAnimator != null) { - Destroy(childAnimator); - childAnimator = null; + childAnimator.transform.localScale = Vector3.zero; } }