v0.5.5
Pre-release
Pre-release
- Fixed
TimeVarclass so it no longer inherits fromRepeatablei.e. no longer has access to the "every" method. - Fixed pattern bug when creating a pattern using the
Pgenerator;P[P(0,2)]no longer returnsP[0, 2]. However,P[(0,2)]is interpreted exactly asP[0, 2]and will return that instead. - Added more variation to the "formantFilter" effect
- "loop" samples are added "on-the-fly" as opposed to loaded at start up. These can be loaded by filepath (with or without extension)
a1 >> loop("/path/to/sample.wav")
a2 >> loop("/path/to/sample")
a1 >> loop("yeah") # Searches recursively for yeah.(wav|wave|aif|aiff|flac)
a1 >> loop("perc/kick") # Supports directories in the path
a1 >> loop("*kick*", sample=2) # Supports * ? [chars] and [!chars]
a1 >> loop("**/*_Em") # Supports ** as 'recursively all subdirectories'