We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c936335 + 978c179 commit 2df61abCopy full SHA for 2df61ab
2 files changed
CHANGELOG.md
@@ -45,6 +45,7 @@
45
* Utils.Array.SetAll will set a property on all elements of an array to the given value, with optional range limits.
46
* Utils.Array.Swap will swap the position of two elements in an array.
47
* TransformMatrix.destroy is a new method that will clear out the array and object used by a Matrix internally.
48
+* Add 'destroy' event in sound object.
49
50
### Bug Fixes
51
src/sound/BaseSound.js
@@ -522,6 +522,7 @@ var BaseSound = new Class({
522
return;
523
}
524
525
+ this.emit('destroy', this);
526
this.pendingRemove = true;
527
this.manager = null;
528
this.key = '';
0 commit comments