Type
Music
An audible object of type Music.
Examples
Load music and play it
  1. function love.load()
  2.     openingThemeMusic = love.audio.newMusic('openingTheme.ogg');
  3.     love.audio.play(openingThemeMusic);
  4. end
Copyright © 2006-2010 LÖVE Development Team.