dathinaios / CuePlayer

A tool for composing and performing real-time and mixed electronic works using SuperCollider.
28 stars 5 forks source link

Implement visualisation of current cue list #1

Closed dathinaios closed 7 years ago

dathinaios commented 8 years ago

A way to visualize the current cue list could be very useful for getting a sense of the overall structure of the project.

dathinaios commented 7 years ago

The list is accesible through the cueList and can easily be displayed using a custom function:

a = CuePlayer.new; 

// add some cues here

a.cueList.do{ arg cue;
 cue.postln; 
}

In combination with CueInfo in the upcoming version (0.2) all kind of visualisations are possible. We might implement a default way to visualise the list in a future version.