Legacy:LoadSound

From Spherical
Revision as of 03:01, 20 December 2015 by DaVince (talk | contribs)
Jump to: navigation, search


{{{preamble}}}

Usage

LoadSound(file, streaming);


  • file String. Name of sound file.
  • streaming boolean. Will stream the file from disk instead of loading the full file into memory. Useful for cutting down loading times when you have large sound files.

Examples

var sound = LoadSound("sound_effect.ogg");
var music = LoadSound("music.ogg", true);
sound.play(); //Play the sound effect.
music.play(true); //true makes the music loop.

Notes

Supported filetypes are:

  • Ogg
  • WAV
  • MP3 (not in minisphere)
  • IT
  • MOD
  • Various other module tracker formats.
  • MIDI (original Sphere only; use is discouraged)

Streaming works only for streaming formats like wav, ogg and mp3.


See also