From e5703516b03fec0529a9b03f09482544ea3491b8 Mon Sep 17 00:00:00 2001 From: crowplexus <45212377+crowplexus@users.noreply.github.com> Date: Fri, 23 Aug 2024 08:57:06 -0400 Subject: [PATCH 1/2] Update Note.hx --- source/objects/Note.hx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/objects/Note.hx b/source/objects/Note.hx index 8397cd46ffe..d1e653aaa17 100644 --- a/source/objects/Note.hx +++ b/source/objects/Note.hx @@ -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) From 42b08a676fb706190529cb0cd22607c3cbf77239 Mon Sep 17 00:00:00 2001 From: crowplexus <45212377+crowplexus@users.noreply.github.com> Date: Fri, 23 Aug 2024 08:58:11 -0400 Subject: [PATCH 2/2] Update StrumNote.hx --- source/objects/StrumNote.hx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/objects/StrumNote.hx b/source/objects/StrumNote.hx index a8addb253df..38b67b26003 100644 --- a/source/objects/StrumNote.hx +++ b/source/objects/StrumNote.hx @@ -85,11 +85,11 @@ class StrumNote extends FlxSprite case 0: animation.add('static', [0]); animation.add('pressed', [4, 8], 12, false); - animation.add('confirm', [12, 16], 24, false); + animation.add('confirm', [12, 16], 12, false); case 1: animation.add('static', [1]); animation.add('pressed', [5, 9], 12, false); - animation.add('confirm', [13, 17], 24, false); + animation.add('confirm', [13, 17], 12, false); case 2: animation.add('static', [2]); animation.add('pressed', [6, 10], 12, false); @@ -97,7 +97,7 @@ class StrumNote extends FlxSprite case 3: animation.add('static', [3]); animation.add('pressed', [7, 11], 12, false); - animation.add('confirm', [15, 19], 24, false); + animation.add('confirm', [15, 19], 12, false); } } else