Revision Difference
IGModAudioChannel:SetPan#526701
<function name="SetPan" parent="IGModAudioChannel" type="classfunc">
<description>Sets the relative volume of the left and right channels.</description>
<added>2020.03.20</added>⤶
<added>2020.04.29</added>⤶
<realm>Client</realm>
<args>
<arg name="pan" type="number">Relative volume between the left and right channels. -1 means only in left channel, 0 is center and 1 is only in the right channel.</arg>
</args>
</function>
<example>
<description>Plays the a Half-Life 1 sound track in the left channel</description>
<code>
sound.PlayFile( "sound/music/hl1_song20.mp3", "", function( channel )
if ( IsValid( channel ) ) then
channel:Play()
channel:SetPan(-1)
end
end )
</code>
</example>