public void PlayButtonDown()
 {
     if (currItem != null)
     {
         imgStop.SetActive(!imgStop.activeSelf);
         bool isPlaying = imgStop.activeSelf;
         currItem.PlayAnimation(isPlaying);
     }
 }