// Update is called once per frame
 void Update()
 {
     if (isCharacterAttachedToChain)
     {
         if (ScreenInputZone.CheckForDoubleTap() || Input.GetKeyDown(KeyCode.LeftControl))
         {
             Dismount();
         }
     }
 }