Constructor LavalinkChannelMix
- Namespace
- DisCatSharp.Lavalink.Entities.Filters
- Assembly
- DisCatSharp.Lavalink.dll
LavalinkChannelMix(Optional<float>, Optional<float>, Optional<float>, Optional<float>)
Mixes both channels (left and right), with a configurable factor on how much each channel affects the other. With the defaults, both channels are kept independent of each other. Setting all factors to 0.5 means both channels get the same audio.
public LavalinkChannelMix(Optional<float> leftToLeft, Optional<float> leftToRight, Optional<float> rightToLeft, Optional<float> rightToRight)
Parameters
leftToLeft
Optional<float>The left to left channel mix factor (
0.0
to1.0
where0.5
is no effect)leftToRight
Optional<float>The left to right channel mix factor (
0.0
to1.0
where0.5
is no effect)rightToLeft
Optional<float>The right to left channel mix factor (
0.0
to1.0
where0.5
is no effect)rightToRight
Optional<float>The right to right channel mix factor (
0.0
to1.0
where0.5
is no effect)