@akashic/akashic-engine
Advanced tools
Comparing version 3.4.3 to 3.4.4
@@ -92,2 +92,6 @@ import type { AudioAsset, AudioPlayer, AudioPlayerEvent, ResourceFactory, AudioSystem as PdiAudioSystem } from "@akashic/pdi-types"; | ||
abstract _onMutedChanged(): void; | ||
/** | ||
* @private | ||
*/ | ||
abstract _onPlaybackRateChanged(): void; | ||
} | ||
@@ -120,3 +124,3 @@ export declare class MusicAudioSystem extends AudioSystem { | ||
*/ | ||
_setPlaybackRate(rate: number): void; | ||
_onPlaybackRateChanged(): void; | ||
/** | ||
@@ -148,3 +152,3 @@ * @private | ||
*/ | ||
_setPlaybackRate(rate: number): void; | ||
_onPlaybackRateChanged(): void; | ||
/** | ||
@@ -151,0 +155,0 @@ * @private |
@@ -99,2 +99,3 @@ "use strict"; | ||
this._updateMuted(); | ||
this._onPlaybackRateChanged(); | ||
}; | ||
@@ -172,4 +173,3 @@ /** | ||
*/ | ||
MusicAudioSystem.prototype._setPlaybackRate = function (rate) { | ||
_super.prototype._setPlaybackRate.call(this, rate); | ||
MusicAudioSystem.prototype._onPlaybackRateChanged = function () { | ||
this.player._changeMuted(this._muted); | ||
@@ -250,4 +250,3 @@ }; | ||
*/ | ||
SoundAudioSystem.prototype._setPlaybackRate = function (rate) { | ||
_super.prototype._setPlaybackRate.call(this, rate); | ||
SoundAudioSystem.prototype._onPlaybackRateChanged = function () { | ||
var players = this.players; | ||
@@ -254,0 +253,0 @@ if (this._suppressed) { |
{ | ||
"name": "@akashic/akashic-engine", | ||
"version": "3.4.3", | ||
"version": "3.4.4", | ||
"description": "The core library of Akashic Engine", | ||
@@ -10,3 +10,3 @@ "main": "index.js", | ||
"@akashic/playlog": "~3.1.0", | ||
"@akashic/trigger": "~1.0.0" | ||
"@akashic/trigger": "~1.0.1" | ||
}, | ||
@@ -16,3 +16,3 @@ "devDependencies": { | ||
"@akashic/pdi-common-impl": "~0.2.0", | ||
"@types/jest": "^28.1.3", | ||
"@types/jest": "^28.1.4", | ||
"@typescript-eslint/eslint-plugin": "^5.29.0", | ||
@@ -24,3 +24,3 @@ "eslint": "^8.18.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"jest": "^28.1.1", | ||
"jest": "^28.1.2", | ||
"prettier": "^2.7.1", | ||
@@ -37,3 +37,3 @@ "rimraf": "^3.0.2", | ||
"ts-jest": "^28.0.5", | ||
"typedoc": "^0.22.17", | ||
"typedoc": "^0.23.0", | ||
"typescript": "^4.7.4", | ||
@@ -40,0 +40,0 @@ "xorshift": "0.2.0" |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1277263
26184
Updated@akashic/trigger@~1.0.1