Skip to content

Commit dc4bb51

Browse files
Updated few members access modifiers from private to protected
1 parent 00c2fd3 commit dc4bb51

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

v3/src/sound/BaseSound.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ var BaseSound = new Class({
131131
/**
132132
* [description]
133133
*
134-
* @private
134+
* @protected
135135
* @property {Phaser.Tween}
136136
*/
137137
this.fadeTween = null; // TODO see how to use global tween
@@ -251,7 +251,7 @@ var BaseSound = new Class({
251251
return true;
252252
},
253253
/**
254-
* @private
254+
* @protected
255255
*/
256256
applyConfig: function () {
257257
this.mute = this.currentConfig.mute;
@@ -264,13 +264,13 @@ var BaseSound = new Class({
264264
return null;
265265
},
266266
/**
267-
* @private
267+
* @protected
268268
*/
269269
update: NOOP,
270270
destroy: function () {
271271
},
272272
/**
273-
* @private
273+
* @protected
274274
*/
275275
setRate: function () {
276276
var cent = 1.0005777895065548; // Math.pow(2, 1/1200);

0 commit comments

Comments
 (0)