CocosCreator背景音乐淡入淡出

背景音乐淡入淡出 && 音效不受影响
实际上和打断音效的实现差不多。需要淡入淡出的音频单独用一个AudioSource管理。
代码实现:

    fadeOut(){
        tween(this._audioSource)
        .to(2,{volume:0})
        .start();
    }
    fadeIn(){
        if(!this._sound_on)return;
        tween(this._audioSource)
        .to(2,{volume:1.0})
        .start();
    }

音频管理参考:
https://www.cnblogs.com/EricShx/articles/18561374

posted @ 2024-12-05 19:14  EricShx  阅读(38)  评论(0)    收藏  举报