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");
}