added VGM playback

This commit is contained in:
Ilu
2023-05-13 19:36:43 +02:00
parent 49af8d6c03
commit cbada2817f
10 changed files with 888 additions and 1 deletions

View File

@@ -10,6 +10,7 @@
* [love.filesystem](#lovefilesystem)
* [love.audio](#loveaudio)
* [love.event](#loveevent)
* [love.vgm](#lovevgm)
##### [Objects](#objects-1)
* [Image](#image)
@@ -38,6 +39,18 @@ Returns the amount of memory in kilobytes which is being used by LoveDOS. This
includes the memory used by both the loaded assets and lua.
### love.vgm
VGM OPL2 playback
##### love.vgm.VgmLoad(filename)
Load (or replace) a VGM.
##### love.vgm.VgmPlay()
Start VGM playback.
##### love.vgm.VgmStop()
Stop VGM playback.
### love.graphics
Provides functions for drawing lines, shapes, text and images.