SampleExists /Audio and multimedia

bool SampleExists(string fileName)

Returns true if the given sound effect sample has already been loaded.

void onSceneCreated()
{
    LoadSoundEffect("soundfx/explosion.mp3");
}

void onSceneUpdate()
{
    if (SampleExists("soundfx/explosion.mp3"))
        print("explosion is ready");
}
Warning This function is not working for music samples on Android yet.