/// <summary>
 /// Force the current interaction to end.
 /// </summary>
 public void EndInteraction()
 {
     if (currentInteractible != null)
     {
         currentInteractible.EndInteraction();
         currentInteractible = null;
     }
 }