Skip to content

Instantly share code, notes, and snippets.

@eeropic
Last active January 5, 2018 16:02
Show Gist options
  • Select an option

  • Save eeropic/5af85888019a5904eff2704da97e1046 to your computer and use it in GitHub Desktop.

Select an option

Save eeropic/5af85888019a5904eff2704da97e1046 to your computer and use it in GitHub Desktop.
thinkin' about a graph format for tone.js
{
id:"Patch 1",
nodes:[
{
id:"Reverb 1",
type:"freeverb",
inlets:[
//min max here?
{id:"dryWet", type:"control"},
{id:"roomSize", type:"control"},
{id:"damping", type:"control"}
],
outlets:[
{id:"audioOut", type:"audio"}
]
},
{
id:"Master out",
type:"master",
inlets:[
{id:"audioIn", type:"audio"}
],
outlets:[]
}
],
edges:[
{
id:"connection1",
source:{id:"Freeverb 1", port:"audioOut"},
target:{id:"Master", port:"audioIn"}
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment