diff --git a/Assets/GameMain/Scripts/Gameplay/CoreGameplayA/CombineComponent.cs b/Assets/GameMain/Scripts/Gameplay/CoreGameplayA/CombineComponent.cs index 6fa45f0..b4c880d 100644 --- a/Assets/GameMain/Scripts/Gameplay/CoreGameplayA/CombineComponent.cs +++ b/Assets/GameMain/Scripts/Gameplay/CoreGameplayA/CombineComponent.cs @@ -385,7 +385,7 @@ namespace CustomComponent /// private void RejectPlace(CombineDraggablePart part, string hint) { - part.ReturnToSpawn(); + part.ReturnToSpawnAnimated(); if (!string.IsNullOrEmpty(hint)) { diff --git a/Assets/GameMain/Scripts/UI/GameplayA/View/CombineDraggablePart.cs b/Assets/GameMain/Scripts/UI/GameplayA/View/CombineDraggablePart.cs index 746a1ee..e5a5571 100644 --- a/Assets/GameMain/Scripts/UI/GameplayA/View/CombineDraggablePart.cs +++ b/Assets/GameMain/Scripts/UI/GameplayA/View/CombineDraggablePart.cs @@ -340,7 +340,7 @@ namespace UI .SetUpdate(true); } - private void ReturnToSpawnAnimated() + public void ReturnToSpawnAnimated() { if (_spawnParent == null) {