blue
fall equinox 2023
;install https://github.com/tehn/blue
(or get it from the community catalog)
always blue, thank you
Very grateful thank you so much
One of the all time great riffs. My heart is full.
Thank you!
it’s like an end credit song for the summer. thank you!
![]()
beautiful, thanks!
this is great!!! i’m looking forward to the inevitable script mash up called “blue plasma”… !!!
so awesome! thanks for posting this!!!
@tehn I love the idea. to me it feels like an album pre-release in form of a script… which is beautiful because of the possibility of interaction. and the sequence/sound is mesmerising.
made some minor modifications so the script would revert back to the previous reverb and levels settings. Here are the changes in case someone want’s to add them.
add this before the init() function
prev_sc_level = params:get("softcut_level")
prev_rev_cut_level = params:get("rev_cut_input")
prev_rev_rtn_level = params:get("rev_return_level")
prev_rev_low_time = params:get("rev_low_time")
prev_rev_mid_time = params:get("rev_mid_time")
prev_rev_hf_damp = params:get("rev_hf_damping")
prev_rev_state = params:get("reverb")
replace the cleanup function with this:
function cleanup()
params:set("softcut_level",prev_sc_level)
params:set("rev_cut_input",prev_rev_cut_level)
params:set("rev_return_level",prev_rev_rtn_level)
params:set("rev_low_time",prev_rev_low_time)
params:set("rev_mid_time",prev_rev_mid_time)
params:set("rev_hf_damping",prev_rev_hf_damp)
params:set("reverb",prev_rev_state)
end