我是靠谱客的博主 昏睡纸鹤,最近开发中收集的这篇文章主要介绍cocos2dx android 音效崩溃,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

cocos2dx同时播放多个音效




cocos2dx同时播放多个音效


cocos2d-x 同时播放多个音效的时候,会发现有的音效放不出,有的循环音效放着放着就没了


后来发现猫腻在Cocos2dxSound.java里:


private static final int MAX_SIMULTANEOUS_STREAMS_DEFAULT = 5;
SoundPool构造的时候要指定并发音频流的数量




public SoundPool (int maxStreams, int streamType, int srcQuality)
Added in 




This constructor was deprecated in API level 21.
use SoundPool.Builder instead to create and configure a SoundPool instance


Constructor. Constructs a SoundPool object with the following characteristics:


Parameters
maxStreamsthe maximum number of simultaneous streams for this SoundPool object


streamTypethe audio stream type as described in AudioManager For example, game applications will normally use .


srcQualitythe sample-rate converter quality. Currently has no effect. Use 0 for the default.


Returns
a SoundPool object, or null if creation failed




这里cocos2d-x设置成5了(I9100设成3),可以手动改大一点,来解决问题

最后

以上就是昏睡纸鹤为你收集整理的cocos2dx android 音效崩溃的全部内容,希望文章能够帮你解决cocos2dx android 音效崩溃所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部