cocos2dlua-声音

播放背景音乐
利用cc的文件工具加载音频文件,再用cc的简单音频引擎播放。

Local filePath=cc.FileUtils:getInstance():fullPathForFilename("music.mp3") 
cc.SimpleAudioEngine:getInstance():playMusic(filePath, true)

播放音效
利用cc的文件工具加载音频文件,再用cc的简单音频引擎预加载、播放、停止。

local effectPath=cc.FileUtils:getInstance():fullPathForFilename("effect.wav")
cc.SimpleAudioEngine:getInstance():preloadEffect(effectPath)
cc.SimpleAudioEngine:getInstance():playEffect(effectPath)
cc.SimpleAudioEngine:getInstance():stopEffect(effectID)

你可能感兴趣的:(cocos2dlua)