Difference between revisions of "Legacy:Sound/isPlaying"

From Spherical
Jump to: navigation, search
m (Examples: small mistake)
(See also)
Line 24: Line 24:
 
==See also==
 
==See also==
 
* Sphere [[API:Sound|Sound]] object
 
* Sphere [[API:Sound|Sound]] object
* [[API:Sound/play|Sound.play]]()
+
* [[API:Sound/play|Sound.play]](repeat)
 
* [[API:Sound/pause|Sound.pause]]()
 
* [[API:Sound/pause|Sound.pause]]()
 
* [[API:Sound/stop|Sound.stop]]()
 
* [[API:Sound/stop|Sound.stop]]()

Revision as of 21:55, 20 May 2013

Play a loaded sound.

Usage

sound.isPlaying();


  • sound Sphere Sound object. The sound to get info from.

Examples

Waiting for a sound to finish:

var font = GetSystemFont();
var my_music = LoadSound("your_sound.ogg");

my_music.play(false);

while (my_music.isPlaying())
{
    font.drawText(0, 0, "I'm playing!");
    FlipScreen();
}

See also