blue

blue

fall equinox 2023

;install https://github.com/tehn/blue

(or get it from the community catalog)

46 Likes

always blue, thank you

2 Likes

Very grateful thank you so much

3 Likes

One of the all time great riffs. My heart is full.

Thank you!

3 Likes

it’s like an end credit song for the summer. thank you!

1 Like

:ocean: :ocean: :ocean:

beautiful, thanks!

1 Like

this is great!!! i’m looking forward to the inevitable script mash up called “blue plasma”… !!!

2 Likes
3 Likes

so awesome! thanks for posting this!!!

1 Like

@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.

changes

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
4 Likes