diff --git a/Assets/Scripts/Interaction/PingClickHandler.cs b/Assets/Scripts/Interaction/PingClickHandler.cs index 7917cfb..6530a63 100644 --- a/Assets/Scripts/Interaction/PingClickHandler.cs +++ b/Assets/Scripts/Interaction/PingClickHandler.cs @@ -125,9 +125,11 @@ public class PingClickHandler : MonoBehaviour { gameObject.SetActive(true); _modelShown = true; + _isBlinking = false; if (_modelRenderer != null) _modelRenderer.enabled = true; foreach (var r in GetComponentsInChildren(true)) r.enabled = true; if (_outlineMesh != null) _outlineMesh.enabled = false; + StopAllCoroutines(); } public void UndoShow() { gameObject.SetActive(false); }