Fix default dry/wet

pull/329/head
Anthony Hall 2025-09-09 14:13:42 -07:00
rodzic 5fb3a47f15
commit baf0ec9e25
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -24,7 +24,7 @@ public:
auto eff = std::make_shared<osci::Effect>(
std::make_shared<BitCrushEffect>(),
std::vector<osci::EffectParameter*>{
new osci::EffectParameter("Bit Crush", "Limits the resolution of points drawn to the screen, making the object look pixelated, and making the audio sound more 'digital' and distorted.", "bitCrushEnable", VERSION_HINT, 0.7, 0.0, 1.0),
new osci::EffectParameter("Bit Crush", "Limits the resolution of points drawn to the screen, making the object look pixelated, and making the audio sound more 'digital' and distorted.", "bitCrushEnable", VERSION_HINT, 1.0, 0.0, 1.0),
new osci::EffectParameter("Bit Crush Strength", "Constrains the resolution which points are limited to.", "bitCrushStrength", VERSION_HINT, 0.7, 0.0, 1.0)
});
eff->setIcon(BinaryData::bitcrush_svg);