kira 0.12.0

Expressive audio library for games
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::{Decibels, command::handle_param_setters};

use super::CommandWriters;

/// Controls a volume control effect.
#[derive(Debug)]
pub struct VolumeControlHandle {
	pub(super) command_writers: CommandWriters,
}

impl VolumeControlHandle {
	handle_param_setters! {
		/// Sets the volume adjustment to apply to input audio.
		volume: Decibels,
	}
}