标签:style blog http ar sp 文件 2014 on log
下面介绍声音资源从加载到播放的一个流程
首先,我们将需要的音频文件放到assets目录下,OGE中SoundRes和MusicRes为我们封装了很多常用的方法,可以用于加载及播放等常用功能。
//设置声音读取路径
Device.getDevice().getSoundFactory().setAssetBasePath("mfx/");
SoundRes.loadSoundFromAssets(SOUND_DIE, "mfx_die.mp3");
//设置音乐读取路径
Device.getDevice().getMusicFactory().setAssetBasePath("mfx");
MusicRes.loadMusicFromAssets(GAME_BG, "game_bg.mp3");
SoundRes.playSound(SOUND_DIE);
MusicRes.playMusic(MUSIC_BG, true);
SoundRes.getSound(SOUND_DIE).pause();
MusicRes.pauseMusic(MUSIC_BG);
标签:style blog http ar sp 文件 2014 on log
原文地址:http://blog.csdn.net/orangegame/article/details/40182865