cocos creator 重寫源碼按鈕Button點擊音頻封裝

(function(){    var Super = function(){};    Super.prototype = cc.Button.prototype;    //實例化原型    Super.prototype._onTouchEnded = function (t) {        if (this.interactable && this.enabledInHierarchy) {            cc.hb.audioMgr.playEffect("click", false);//播放按鈕Button音頻                        if (this._pressed) {                cc.Component.EventHandler.emitEvents(this.clickEvents, t);                this.node.emit("click", this);            }            this._pressed = !1;            this._updateState();            t.stopPropagation();        }    };})();
相關文章
相關標籤/搜索