From 27a2d12f42d15028c06a603b630ac58db66901bf Mon Sep 17 00:00:00 2001 From: James Ball Date: Fri, 26 Apr 2024 21:41:19 +0100 Subject: [PATCH] Enable animation of line art by default, and set default framerate to 30 --- Source/PluginProcessor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/PluginProcessor.h b/Source/PluginProcessor.h index b8106e7..707ad53 100644 --- a/Source/PluginProcessor.h +++ b/Source/PluginProcessor.h @@ -198,9 +198,9 @@ public: IntParameter* voices = new IntParameter("Voices", "voices", VERSION_HINT, 4, 1, 16); - BooleanParameter* animateLineArt = new BooleanParameter("Animate", "animateLineArt", VERSION_HINT, false); + BooleanParameter* animateLineArt = new BooleanParameter("Animate", "animateLineArt", VERSION_HINT, true); BooleanParameter* syncMIDIAnimation = new BooleanParameter("Sync Animation", "syncMIDIAnimation", VERSION_HINT, false); - FloatParameter* animationRate = new FloatParameter("Animation Rate", "animationRate", VERSION_HINT, 8, -256, 256, 0.01); + FloatParameter* animationRate = new FloatParameter("Animation Rate", "animationRate", VERSION_HINT, 30, -256, 256, 0.01); FloatParameter* animationOffset = new FloatParameter("Animation Offset", "animationOffset", VERSION_HINT, 0, -8192, 8192, 0.1); double animationTime = 0.f;