Commit 9ceecc3 1 parent 63da72f commit 9ceecc3 Copy full SHA for 9ceecc3
File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -240,7 +240,11 @@ export default class Note
240
240
if ( this . judgeline . alpha < 0 )
241
241
{
242
242
if ( this . judgeline . alpha >= - 1 ) this . sprite . visible = false ;
243
- else if ( this . judgeline . alpha >= - 2 && this . originY < 0 ) this . sprite . visible = false ;
243
+ else if ( this . judgeline . alpha >= - 2 )
244
+ {
245
+ if ( this . originY > 0 ) this . sprite . visible = false ;
246
+ else if ( this . originY < 0 ) this . sprite . visible = true ;
247
+ }
244
248
}
245
249
246
250
if ( this . debugSprite )
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ export default class Score
77
77
fill : 0xFFFFFF
78
78
} ) ;
79
79
this . sprites . combo . number . alpha = 0.81 ;
80
- this . sprites . combo . text = new Text ( ' COMBO', {
80
+ this . sprites . combo . text = new Text ( ( this . _autoPlay ? 'AUT' + 'OPL' + 'AY' : ' COMBO') , {
81
81
fontFamily : 'MiSans' ,
82
82
fill : 0xFFFFFF
83
83
} ) ;
You can’t perform that action at this time.
0 commit comments