public static AudioElement SetElementVolume(string name, FadeSettings fadeSettings) { AudioElement e = GetElement(name); e.SetVolume(fadeSettings); return(e); }
// 4. Volume public static AudioElement SetElementVolume(string name, float volume) { AudioElement e = GetElement(name); e.SetVolume(volume); return(e); }