cocos2dlua-声音

前端之家收集整理的这篇文章主要介绍了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)
原文链接:https://www.f2er.com/cocos2dx/341513.html

猜你在找的Cocos2d-x相关文章