VERSIÓ 1.3.7

- [NEW] music.enable() i sound.enable()
This commit is contained in:
2025-10-30 16:27:40 +01:00
parent 4172c6af3d
commit 62ac5ae92d
7 changed files with 82 additions and 1 deletions

View File

@@ -325,6 +325,15 @@ function music.pos() end
---Set the playing position of the currently loaded song
function music.pos(pos) end
---@return boolean value
---Get if music is enabled
function music.enabled() end
---@param value boolean
---Set if music is enabled or not
function music.enabled(value) end
---@class sound
sound = {}
@@ -352,6 +361,14 @@ function sound.play(snd, loop) end
---Stop the channel specified
function sound.stop(chl) end
---@return boolean value
---Get if sound is enabled
function sound.enabled() end
---@param value boolean
---Set if sound is enabled or not
function sound.enabled(value) end
---@class sys
sys = {}