1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00

Add automation support for VST3 bypass

This commit is contained in:
hogliux 2016-03-20 13:09:00 +00:00
parent e30464b210
commit 7cecc7edfb

View file

@ -258,7 +258,7 @@ public:
info.stepCount = 1;
info.defaultNormalizedValue = 0.0f;
info.unitId = Vst::kRootUnitId;
info.flags = Vst::ParameterInfo::kIsBypass;
info.flags = Vst::ParameterInfo::kIsBypass | Vst::ParameterInfo::kCanAutomate;
}
virtual ~BypassParam() {}