2024-04-17 06:29:13 -03:00
|
|
|
# Number of audio input and output channels
|
|
|
|
CHANNELS = 2
|
|
|
|
|
|
|
|
# installation directory of puredata (optional)
|
|
|
|
# If non specified, will search in <host_exec_dir>\pdvst\pd\
|
|
|
|
# then in <vst_dir>\.pd\
|
|
|
|
#PDPATH = D:\Programs\pd-0.48-1-test\
|
|
|
|
|
|
|
|
# Main Pd patch of the plugin
|
|
|
|
MAIN = Pd_Chunks-test.pd
|
|
|
|
|
|
|
|
# Unique four character VST plugin ID
|
|
|
|
ID = pdch
|
|
|
|
|
|
|
|
# Whether this is a VSTi
|
|
|
|
SYNTH = FALSE
|
|
|
|
|
|
|
|
# Whether there is a custom GUI (e.g. GrIPD)
|
|
|
|
CUSTOMGUI = FALSE
|
|
|
|
|
|
|
|
# Display Pd GUI or not
|
|
|
|
DEBUG = TRUE
|
|
|
|
|
|
|
|
# External libraries (comma delimited list, relative to pdvst/)
|
|
|
|
# ***OBSOLETE, use [declare] inside patch instead***
|
|
|
|
#LIB =
|
|
|
|
|
2024-04-22 09:17:15 -03:00
|
|
|
# Save and Get Pd lists in .fxp file via ([s svstdata] and [r rvstdata])
|
|
|
|
# Some hosts don't work correctly with this.
|
|
|
|
# If in doubt just use FALSE.
|
|
|
|
PROGRAMSARECHUNKS = TRUE
|
|
|
|
|
2024-04-17 06:29:13 -03:00
|
|
|
# Number of VST parameters (up to 128)
|
|
|
|
PARAMETERS = 1
|
|
|
|
|
|
|
|
# Name of first VST parameter
|
|
|
|
# used when CUSTOMGUI is false or VST host doesn't support custom editors
|
|
|
|
NAMEPARAMETER0 = Level
|
|
|
|
|
|
|
|
# Define a program (up to 128)
|
|
|
|
PROGRAM = Full Blast
|
|
|
|
|
|
|
|
# Set first parameter value for this program
|
|
|
|
PARAMETER0 = 1.0
|
|
|
|
|
|
|
|
#another program
|
|
|
|
PROGRAM = Muted
|
|
|
|
|
|
|
|
PARAMETER0 = 0.0
|
|
|
|
|
|
|
|
#another program
|
|
|
|
PROGRAM = -6dB
|
|
|
|
|
2024-04-25 04:58:24 -03:00
|
|
|
PARAMETER0 = 0.5
|
|
|
|
|
|
|
|
#another program
|
|
|
|
PROGRAM = test empty param
|