create first version of input section

main
Georg Krause 2018-05-07 15:01:47 +02:00
parent 3ef2ad87d0
commit bf1ab519f9
1 changed files with 20 additions and 0 deletions

20
input.dot Normal file
View File

@ -0,0 +1,20 @@
/* TODO: Display Crossfader correctly */
strict digraph input {
master_in [label="Master In", shape=box, style=filled, color=orange];
send_out [label="Send Out", shape=box, style=filled, color=red];
sidechain_key_out [label="Sidechain Key Out", shape=box, style=filled, color=red];
sidechain_signal_out [label="Sidechain Signal Out", shape=box, style=filled, color=red];
master_out [label="Master Out", shape=box, style=filled, color=red];
clip_record [label="Clip Record", shape=box, style=filled, color=blue];
master_in -> "Input Volume";
"Input Volume" -> "Mix Volume";
"Mix Volume" -> "Send Volume" -> send_out;
"Input Volume" -> sidechain_key_out;
"Input Volume" -> "Sidechain Signal Volume" -> sidechain_signal_out;
"Sidechain Signal Volume" -> master_out;
master_in -> clip_record;
}