Animatroller.Framework.LogicalDevice.AudioPlayer.SetBackgroundVolume C# (CSharp) Метод

SetBackgroundVolume() публичный Метод

public SetBackgroundVolume ( double volume ) : AudioPlayer
volume double
Результат AudioPlayer
        public AudioPlayer SetBackgroundVolume(double volume)
        {
            this.currentBackgroundVolume = volume;

            RaiseExecuteCommand(AudioCommandEventArgs.Commands.BackgroundVolume, volume * Executor.Current.MasterVolume.Value);

            return this;
        }