Skip to content

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);
ParamTypeDefaultDescription
name&strThe 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
ParamTypeDefaultDescription
name&strThe name of the audio asset check.

audio::pause

Pauses the given audio track.

audio::pause(name: &str)
ParamTypeDefaultDescription
name&strThe 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)
ParamTypeDefaultDescription
name&strThe name of the audio asset to stop.