feat(presets): emit default global settings
Context: Phase 2 Task 1 made the SC engine load a globalSettings Event from .matrix files (openThresh/closeThresh/transientBars/breakdownKeep) and default it when absent. Generator was not yet writing the field. Approach: append globalSettings after globalActions in to_sc() return string; extend test_global_actions.py with EXPECT_SET check against both the to_sc sample and all 84 .matrix files on disk. Changes: - generate_presets.py: to_sc now ends with globalActions (comma) then globalSettings Event with default values matching SC defaults - test_global_actions.py: add EXPECT_SET literal + two check() calls - *.matrix (84 files): each preset now carries the globalSettings field Impact: every preset ships with openThresh/closeThresh/transientBars/ breakdownKeep defaults; SC engine reads them on load; no more implicit fallback needed at runtime for any preset in the library.
This commit is contained in:
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -1148,7 +1148,9 @@ def to_sc(name, arc_fn, instkit, melodies, extra, post=None):
|
||||
"'colorDefs': [\n%s\n],\n"
|
||||
"'voiceMods': [ %s ],\n"
|
||||
"'voicePoses': [ %s ],\n"
|
||||
"'globalActions': [ \\fill, \\drop, \\evolve, \\breakdown ]\n)\n"
|
||||
"'globalActions': [ \\fill, \\drop, \\evolve, \\breakdown ],\n"
|
||||
"'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, "
|
||||
"'transientBars': 1, 'breakdownKeep': [ \\kick, \\sub ] )\n)\n"
|
||||
% (rows, isyms, cds, vms, vps))
|
||||
|
||||
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -27,5 +27,12 @@ missing = [os.path.basename(f) for f in files
|
||||
if EXPECT not in open(f, encoding="utf-8").read()]
|
||||
check(not missing, "globalActions missing in: %s" % missing[:5])
|
||||
|
||||
EXPECT_SET = ("'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, "
|
||||
"'transientBars': 1, 'breakdownKeep': [ \\kick, \\sub ] )")
|
||||
check(EXPECT_SET in sample, "to_sc output missing globalSettings default")
|
||||
missing_set = [os.path.basename(f) for f in files
|
||||
if EXPECT_SET not in open(f, encoding="utf-8").read()]
|
||||
check(not missing_set, "globalSettings missing in: %s" % missing_set[:5])
|
||||
|
||||
print("GLOBALACT-PY PASS" if ok else "GLOBALACT-PY FAIL")
|
||||
sys.exit(0 if ok else 1)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
@@ -50,5 +50,6 @@
|
||||
],
|
||||
'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ],
|
||||
'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ],
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ]
|
||||
'globalActions': [ \fill, \drop, \evolve, \breakdown ],
|
||||
'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] )
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user