Enable animation of line art by default, and set default framerate to 30

pull/241/head
James Ball 2024-04-26 21:41:19 +01:00 zatwierdzone przez James H Ball
rodzic d1ae93f75a
commit 27a2d12f42
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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;