Audio
Overview
The audio
module provides methods for playing back project's audio files.
API
audio::play
Plays an audio file from your project's audio
directory,
audio::play(name: &str);
Param | Type | Default | Description |
---|---|---|---|
name | &str | The name of the audio asset to play. |
audio::is_playing
Returns true
if the given audio track is currently being played.
audio::is_playing(name: &str) -> bool
Param | Type | Default | Description |
---|---|---|---|
name | &str | The name of the audio asset check. |
audio::pause
Pauses the given audio track.
audio::pause(name: &str)
Param | Type | Default | Description |
---|---|---|---|
name | &str | The name of the audio asset to pause. |
audio::stop
Stops the given audio track and resets its progress to the beginning.
audio::stop(name: &str)
Param | Type | Default | Description |
---|---|---|---|
name | &str | The name of the audio asset to stop. |