I am not understanding this part of the script:
int low_volume = 20;
if (MusicVolumeSlider.Value < 20) // assuming you have a volume slider called "MusicVolumeSlider"
low_volume = MusicVolumeSlider.Value;
Where is the volume slider? Is this a global int?
int low_volume = 20;
if (MusicVolumeSlider.Value < 20) // assuming you have a volume slider called "MusicVolumeSlider"
low_volume = MusicVolumeSlider.Value;
Where is the volume slider? Is this a global int?