SetAudioStreamPan method
Set pan for audio stream (0.5 is centered)
Implementation
@override
void SetAudioStreamPan(
AudioStreamD stream,
num pan,
) => run(
() => RaylibDebugLabels.SetAudioStreamPan(stream, pan),
() => rl.Audio.SetAudioStreamPan.run2(
rl.Temp.AudioStream$.Ref1(stream).toJS,
pan.toJS,
),
);