audIsAudioInitialized

Checks if the audio engine has been initialized. Takes no parameters. Returns 1 if the audio engine (SoLoud) has been successfully initialized, otherwise returns 0.

Audio

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Int

Quick Summary

Checks if the audio engine has been initialized. Takes no parameters. Returns 1 if the audio engine (SoLoud) has been successfully initialized, otherwise returns 0.

Technical Exegesis...

Returns 1 if the audio engine (SoLoud) has been successfully initialized, otherwise returns 0.

The audio engine is automatically initialized on first use of any audio function. This diagnostic function is useful for debugging or verifying that audio is available before attempting playback.

Example

Example.bam
If audIsAudioInitialized()
	Print \"The audio system is valid\"
Else
	Print \"The audio system has not been Initialized\"
EndIf