private void OnDialogueOutroExitFocusedView(object source, EventArgs args)
    {
        ConversationSnippet.DestroyAllCustomerResponseSnippets(this);

        StartCoroutine(ExitFocusedCraftingModeAfterTimeDelay(1f));

        CameraManager.ChangeViewTo();
    }
 private void DestroyHangingResponse()
 {
     if (hangingNpcResponse != null)
     {
         responseTimeTracker.StopTracking();
         ConversationSnippet.DestroyAllCustomerResponseSnippets(this);
         hangingNpcResponse = null;
     }
 }