DelayNoMore/frontend/build-templates/wechatgame/libs/engine/Audio.js
2022-09-20 23:52:55 +08:00

13 lines
329 B
JavaScript

(function () {
if (!(cc && cc.Audio)) {
return;
}
cc.Audio.prototype.stop = function () {
if (!this._element) return;
this._element.stop();
this._element.currentTime = 0;
this._unbindEnded();
this.emit('stop');
this._state = cc.Audio.State.STOPPED;
};
})();