Skip to content

Commit

Permalink
Update Note.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
crowplexus authored Aug 23, 2024
1 parent 1f15374 commit e570351
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/objects/Note.hx
Original file line number Diff line number Diff line change
Expand Up @@ -446,9 +446,9 @@ class Note extends FlxSprite

if(isSustainNote)
{
animation.add(colArray[noteData] + 'holdend', [noteData + 4], 24, true);
animation.add(colArray[noteData] + 'hold', [noteData], 24, true);
} else animation.add(colArray[noteData] + 'Scroll', [noteData + 4], 24, true);
animation.add(colArray[noteData] + 'holdend', [noteData + 4], 12, true);
animation.add(colArray[noteData] + 'hold', [noteData], 12, true);
} else animation.add(colArray[noteData] + 'Scroll', [noteData + 4], 12, true);
}

function attemptToAddAnimationByPrefix(name:String, prefix:String, framerate:Float = 24, doLoop:Bool = true)
Expand Down

0 comments on commit e570351

Please sign in to comment.