From a6df1ac7ab121abddb76e363455d84b65f903f16 Mon Sep 17 00:00:00 2001 From: VocalFan <45863583+VocalFan@users.noreply.github.com> Date: Tue, 4 Jun 2024 12:54:17 -0400 Subject: [PATCH] Add note for Alt anims --- psychtobase/src/tools/ChartTools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psychtobase/src/tools/ChartTools.py b/psychtobase/src/tools/ChartTools.py index 0427ada..888b48c 100644 --- a/psychtobase/src/tools/ChartTools.py +++ b/psychtobase/src/tools/ChartTools.py @@ -222,7 +222,7 @@ def convert(self): play_animation = (strumTime, target, anim) if play_animation not in existing_events: - events.append(Utils.playAnimation(strumTime, target, anim, False)) + events.append(Utils.playAnimation(strumTime, target, anim, True)) #We should add a custom note type that plays the animation when the note is PRESSED. existing_events.add(play_animation) notes.append(Utils.note(noteData, length, strumTime))