# Number of audio input and output channels CHANNELS = 2 # Main Pd patch of the plugin MAIN = Pd_Synth.pd # Unique four character VST plugin ID ID = pdsn # Whether this is a VSTi SYNTH = TRUE # Whether there is a custom GUI (e.g. GrIPD) CUSTOMGUI = TRUE # Display Pd GUI or not DEBUG = FALSE # External libraries (comma delimited list) LIB = ./pd/gripd/gripd, zexy # Number of VST parameters (up to 128) PARAMETERS = 3 # Name of first VST parameter # used when CUSTOMGUI is false or VST host doesn't support custom editors NAMEPARAMETER0 = Level NAMEPARAMETER1 = Waveform NAMEPARAMETER2 = Cut-off # Define a program (up to 128) PROGRAM = Sawtooth # Set first parameter value for this program PARAMETER0 = 1 PARAMETER1 = 0 PARAMETER2 = 0.4 #Deinfe another program and its parameter value PROGRAM = Square PARAMETER0 = 1 PARAMETER1 = 1 PARAMETER2 = 0.9