MCPcopy Create free account
hub / github.com/Torsion-Audio/Scyclone / createNotAutomatableValueTree

Method createNotAutomatableValueTree

source/PluginParameters.cpp:173–180  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

171}
172
173juce::ValueTree PluginParameters::createNotAutomatableValueTree()
174{
175 juce::ValueTree notAutomatableParameters = juce::ValueTree("Settings");
176 notAutomatableParameters.setProperty(ADVANCED_PARAMETER_CONTROL_VISIBLE_NAME, juce::var(false), nullptr);
177 notAutomatableParameters.setProperty(NETWORK1_NAME_NAME, juce::var("Funk"), nullptr);
178 notAutomatableParameters.setProperty(NETWORK2_NAME_NAME, juce::var("Djembe"), nullptr);
179 return notAutomatableParameters;
180}
181
182void PluginParameters::clearNotAutomatableValueTree(juce::ValueTree notAutomatableParameters) {
183 notAutomatableParameters.removeProperty(ADVANCED_PARAMETER_CONTROL_VISIBLE_NAME, nullptr);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected