码迷,mamicode.com
首页 > 其他好文 > 详细

cocos2dx3.2 判断音效是否播放

时间:2014-11-19 18:49:53      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:cocos2dx3.x   c++   音效   是否播放   

SimpleAudioEngine类中加入一函数

如下

bool isEffectPlaying(unsigned int nSoundId);

定义如下

bool SimpleAudioEngine::isEffectPlaying(unsigned int nSoundId)
{
	EffectList::iterator p = sharedList().find(nSoundId);
	bool bRet = false;
	if (p != sharedList().end())
	{
		bRet = p->second->IsPlaying();
	}

	return bRet;
}

完成

cocos2dx3.2 判断音效是否播放

标签:cocos2dx3.x   c++   音效   是否播放   

原文地址:http://blog.csdn.net/xie1xiao1jun/article/details/41283555

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!