1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

[Projucer] Add missing plugtype category options of VST3 format in Projucer.

This commit is contained in:
Tatsuya Shiozawa 2022-05-31 13:47:36 +09:00
parent e618f68d4d
commit c7446d3375

View file

@ -2286,9 +2286,9 @@ Array<var> Project::getDefaultVSTCategories() const noexcept
StringArray Project::getAllVST3CategoryStrings() noexcept
{
static StringArray vst3CategoryStrings { "Fx", "Instrument", "Analyzer", "Delay", "Distortion", "Drum", "Dynamics", "EQ", "External", "Filter",
"Generator", "Mastering", "Modulation", "Mono", "Network", "NoOfflineProcess", "OnlyOfflineProcess", "OnlyRT",
"Pitch Shift", "Restoration", "Reverb", "Sampler", "Spatial", "Stereo", "Surround", "Synth", "Tools", "Up-Downmix" };
static StringArray vst3CategoryStrings { "Fx", "Instrument", "Analyzer", "Ambisonics", "Delay", "Distortion", "Drum", "Dynamics", "EQ", "External", "Filter",
"Generator", "Mastering", "Modulation", "Mono", "Network", "NoOfflineProcess", "OnlyARA", "OnlyOfflineProcess", "OnlyRT",
"Piano", "Pitch Shift", "Restoration", "Reverb", "Sampler", "Spatial", "Stereo", "Surround", "Synth", "Tools", "Up-Downmix" };
return vst3CategoryStrings;
}