private void ChangeBackground()
 {
     currentIndex++;
     currentIndex = currentIndex % textures.Length;
     EZFloatingWindow.SetBackground(textures[currentIndex].EncodeToPNG());
 }