public void SetRestoreValues(CustomLightshowController lightshow)
        {
            if (useCustomSaberColors)
            {
                lightshow.OnInterceptedSaberColors(saberColorLeft, saberColorRight, disableSaberColorsOn);
            }

            if (useCustomNoteColors)
            {
                lightshow.OnInterceptedNoteColors(noteColorLeft, noteColorRight, disableNoteColorsOn);
            }

            if (useCustomWallColor)
            {
                lightshow.OnInterceptedWallColor(wallColor, disableWallColorOn);
            }
        }
 public void StopIntercept()
 {
     interceptingLightshow = null;
 }
 public void StartIntercept(CustomLightshowController lightshow)
 {
     interceptingLightshow = lightshow;
 }