배경음악 출력하기
헤더파일과 네임스페이스
1 2 3 | #include "SimpleAudioEngine.h" using namespace CocosDenshion; | cs |
배경음악 출력
1 2 | //playBackgroundMusic(파일명, 반복여부) SimpleAudioEngine::getInstance()->playBackgroundMusic("background.mp3"); | cs |
배경음악 미리 로드
1 | SimpleAudioEngine::getInstance()->preloadBackgroundMusic("background.mp3"); | cs |
배경음악 일시정지
1 | SimpleAudioEngine::getInstance()->pauseBackgroundMusic(); | cs |
배경음악 다시 재생 (일시정지된 배경음악을 다시 재생)
1 | SimpleAudioEngine::getInstance()->resumeBackgroundMusic(); | cs |
배경음악 중지
1 2 | //stopBackgroundMusic(메모리풀에서 해제여부) SimpleAudioEngine::getInstance()->stopBackgroundMusic(); | cs |
배경음악 출력여부 확인
1 | bool isPlay = SimpleAudioEngine::getInstance()->isBackgroundMusicPlaying(); | cs |
배경음악 소리크기 지정
1 2 3 | //범위 : 0~1 SimpleAudioEngine::getInstance()->setBackgroundMusicVolume(0.5); | cs |
배경음악 소리크기 반환
1 2 | //범위 : 0~1 float volume = SimpleAudioEngine::getInstance()->getBackgroundMusicVolume(); | cs |
'IT > - 프로그래밍' 카테고리의 다른 글
Cocos 스크롤뷰 추가하기 (0) | 2017.03.24 |
---|---|
Cocos 효과음 출력하기 (0) | 2017.03.23 |
Cocos 기본 파티클 (0) | 2017.03.21 |
Cocos UserDefault 저장소 (0) | 2017.03.20 |
Cocos Vector 사용 (0) | 2017.03.19 |