setPan method
Set pan for a playing sound (-1.0 left to 1.0 right).
Implementation
void setPan(SoundHandle handle, double pan) {
if (!_isInitialized) return;
try {
_soloud.setPan(handle, pan);
} catch (e, st) {
NeomErrorLogger.recordError(e, st, module: 'neom_sound', operation: 'setPan');
}
}