setPan method

void setPan(
  1. int channelId,
  2. double pan
)

Sets the stereo panning for the sound on the specified channelId.

Implementation

void setPan(int channelId, double pan) {
  _backend.setChannelPan(channelId, pan);
}