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::{Panning, command::handle_param_setters};

use super::CommandWriters;

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

impl PanningControlHandle {
	handle_param_setters! {
		/// Sets the panning adjustment to apply to input audio.
		panning: Panning,
	}
}