diff options
| author | pepper <pepper@chimecrisis.com> | 2015-01-31 21:41:28 -0800 |
|---|---|---|
| committer | pepper <pepper@chimecrisis.com> | 2015-01-31 21:41:28 -0800 |
| commit | 97587996ee9db30ce00190bdcedd8210490b99f5 (patch) | |
| tree | d8554969ac496be3a1b02a159f2a4b5b79f9492e /public.sdk/samples/vst2.x/vstxsynth/resource | |
backup vst 2.4
Diffstat (limited to 'public.sdk/samples/vst2.x/vstxsynth/resource')
| -rw-r--r-- | public.sdk/samples/vst2.x/vstxsynth/resource/vstxsynth.rc | 3 | ||||
| -rw-r--r-- | public.sdk/samples/vst2.x/vstxsynth/resource/vstxsynth.vstxml | 36 |
2 files changed, 39 insertions, 0 deletions
diff --git a/public.sdk/samples/vst2.x/vstxsynth/resource/vstxsynth.rc b/public.sdk/samples/vst2.x/vstxsynth/resource/vstxsynth.rc new file mode 100644 index 0000000..eb0135c --- /dev/null +++ b/public.sdk/samples/vst2.x/vstxsynth/resource/vstxsynth.rc @@ -0,0 +1,3 @@ +#define APSTUDIO_READONLY_SYMBOLS + +1 VSTXML "vstxsynth.vstxml"
\ No newline at end of file diff --git a/public.sdk/samples/vst2.x/vstxsynth/resource/vstxsynth.vstxml b/public.sdk/samples/vst2.x/vstxsynth/resource/vstxsynth.vstxml new file mode 100644 index 0000000..f56fe24 --- /dev/null +++ b/public.sdk/samples/vst2.x/vstxsynth/resource/vstxsynth.vstxml @@ -0,0 +1,36 @@ +<!-- =========================================================== --> +<!-- VST Parameter XML Definition for vstxsynth ================ --> +<!-- Version 1.0 =============================================== --> +<!-- Date: 01/2006 ============================================= --> +<!-- =========================================================== --> + +<VSTPluginProperties> + <VSTParametersStructure> + <!-- ======================================================= --> + <!-- Value Types =========================================== --> + <!-- ======================================================= --> + + <ValueType name="Waveform"> + <Entry name="Sawtooth" value="[0, 0.5["/> + <Entry name="Pulse" value="[0.5, 1]"/> + </ValueType> + + <!-- ======================================================= --> + <!-- Templates ============================================= --> + <!-- ======================================================= --> + + <Template name="Osc"> + <Param name="Waveform" type="Waveform" id="offset"/> + <Param name="Frequency" id="offset+1"/> + <Param name="Level" id="offset+2"/> + </Template> + + <!-- ======================================================= --> + <!-- Global ================================================ --> + <!-- ======================================================= --> + + <Param name="Volume" id="6"/> + <Group name="Osc Left" template="Osc" values="offset=0"/> + <Group name="Osc Right" template="Osc" values="offset=3"/> + </VSTParametersStructure> +</VSTPluginProperties> |
