File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -213,13 +213,14 @@ var ElementFactory = function (game) {
213
213
this . factorBullet = function ( type ) {
214
214
var bullet = _game . add . sprite ( _game . world . centerX , _game . world . centerY , 'bullet_' + type ) ;
215
215
bullet . btnSound = null ;
216
- if ( type == 'increase' ) {
216
+ if ( type == 'increase' ) {
217
217
bullet . btnSound = _game . add . audio ( 'gravity_plus' ) ;
218
218
} else {
219
219
bullet . btnSound = _game . add . audio ( 'gravity_minus' ) ;
220
- } ;
221
- _game . sound . setDecodedCallback ( [ bullet . btnSound ] , function ( ) {
222
- } , this ) ;
220
+ }
221
+ ;
222
+ _game . sound . setDecodedCallback ( [ bullet . btnSound ] , function ( ) {
223
+ } , this ) ;
223
224
bullet . btnSound . play ( ) ;
224
225
bullet . anchor . setTo ( 0.5 , 0.5 ) ;
225
226
bullet . scale . setTo ( 0.4 , 0.4 ) ;
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ Menu.prototype = {
73
73
}
74
74
} ,
75
75
shutdown : function ( ) {
76
- for ( var i = 0 ; i < this . buttons . length ; i ++ ) {
76
+ for ( var i = 0 ; i < this . buttons . length ; i ++ ) {
77
77
this . buttons [ i ] . btnSound . stop ( ) ;
78
78
}
79
79
}
You can’t perform that action at this time.
0 commit comments