audPauseChannel

Pauses playback on a channel without stopping it. Takes channel (channel handle). Returns nothing.

Audio

Parameters & Returns

Parameters

channel Int

Returns

Void

Quick Summary

Pauses playback on a channel without stopping it. Takes channel (channel handle). Returns nothing.

Technical Exegesis...

Pauses playback on the specified channel, keeping its current position. The channel can be resumed later with audResumeChannel to continue from where it paused.

Does nothing if the channel handle is invalid or <= 0. Unlike audStopChannel, pausing preserves the playback position and the channel remains valid. Useful for implementing pause functionality in games.

Example

Example.bam
; No example implemented yet