Audio plugin parameters at Matlab are always sliders?

前端 未结 1 1311
予麋鹿
予麋鹿 2021-01-24 17:05

When creating an audio plugin with Matlab\'s audio toolbox (either when I use the examples given by mathworks), the plugin parameters I add to the interface, always appear as sl

相关标签:
1条回答
  • 2021-01-24 17:33

    Starting in R2019b, you can set the Style property of audioPluginParameter to one of hslider, vslider, rotaryknob, checkbox, vrocker, vtoggle, and dropdown.

    You can also replace the default graphics of the widgets with your own custom images using the Filmstrip property (the custom graphics can be seen only in a DAW, audioTestBench does not pick this up).

    See this doc page for more information on customizing the plugin UI: https://www.mathworks.com/help/audio/ug/plugin-gui-design.html

    0 讨论(0)
提交回复
热议问题