1
0
Fork 0

Make the example plugins in the readme hyperlinks

This commit is contained in:
Robbert van der Helm 2022-02-13 21:04:07 +01:00
parent c1d91498e1
commit 6d157e06b5

View file

@ -59,13 +59,14 @@ cargo xtask bundle gain --release --bundle-vst3
The best way to get an idea for what the API looks like is to look at the
examples.
- **gain** is a simple smoothed gain plugin that shows off a couple other parts
of the API, like support for storing arbitrary serializable state.
- **gain-gui** is the same plugin as gain, but with a GUI to control the
parameter and a digital peak meter.
- **sine** is a simple test tone generator plugin with frequency smoothing that
can also make use of MIDI input instead of generating a static signal based on
the plugin's parameters.
- [**gain**](plugins/examples/gain) is a simple smoothed gain plugin that shows
off a couple other parts of the API, like support for storing arbitrary
serializable state.
- [**gain-gui**](plugins/examples/gain-gui) is the same plugin as gain, but with
a GUI to control the parameter and a digital peak meter.
- [**sine**](plugins/examples/sine) is a simple test tone generator plugin with
frequency smoothing that can also make use of MIDI input instead of generating
a static signal based on the plugin's parameters.
## Licensing