mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Projucer: Enable "Plugin is a Synth" setting for synth plug-in examples
This commit is contained in:
parent
fcee6f7e1c
commit
cdd8f2b78a
1 changed files with 4 additions and 2 deletions
|
|
@ -520,11 +520,13 @@ StringArray PIPGenerator::getPluginCharacteristics() const
|
|||
auto name = metadata[Ids::name].toString();
|
||||
|
||||
if (name == "AudioPluginDemo")
|
||||
return { Ids::pluginWantsMidiIn.toString(),
|
||||
return { Ids::pluginIsSynth.toString(),
|
||||
Ids::pluginWantsMidiIn.toString(),
|
||||
Ids::pluginProducesMidiOut.toString(),
|
||||
Ids::pluginEditorRequiresKeys.toString() };
|
||||
else if (name == "AUv3SynthPlugin" || name == "MultiOutSynthPlugin")
|
||||
return { Ids::pluginWantsMidiIn.toString(),
|
||||
return { Ids::pluginIsSynth.toString(),
|
||||
Ids::pluginWantsMidiIn.toString(),
|
||||
Ids::pluginIsSynth.toString() };
|
||||
else if (name == "ArpeggiatorPlugin")
|
||||
return { Ids::pluginWantsMidiIn.toString(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue