39 lines
754 B
Python
39 lines
754 B
Python
from ..vita.constants import (
|
|
SourceDestination,
|
|
Effect,
|
|
FilterModel,
|
|
RetriggerStyle,
|
|
SpectralMorph,
|
|
DistortionType,
|
|
UnisonStackType,
|
|
RandomLFOStyle,
|
|
SynthFilterStyle,
|
|
WaveShape,
|
|
CompressorBandOption,
|
|
VoiceOverride,
|
|
VoicePriority,
|
|
SynthLFOSyncOption,
|
|
SynthLFOSyncType,
|
|
SyncedFrequency,
|
|
ValueScale,
|
|
)
|
|
|
|
__ALL__ = [
|
|
"SourceDestination",
|
|
"Effect",
|
|
"FilterModel",
|
|
"RetriggerStyle",
|
|
"SpectralMorph",
|
|
"DistortionType",
|
|
"UnisonStackType",
|
|
"RandomLFOStyle",
|
|
"SynthFilterStyle",
|
|
"WaveShape",
|
|
"CompressorBandOption",
|
|
"VoiceOverride",
|
|
"VoicePriority",
|
|
"SynthLFOSyncOption",
|
|
"SynthLFOSyncType",
|
|
"SyncedFrequency",
|
|
"ValueScale",
|
|
]
|