sc_play_pattern
Play rhythmic patterns or note sequences to create melodies, beats, and musical phrases using SuperCollider audio synthesis.
Instructions
Play a rhythmic pattern or sequence of notes. Useful for creating melodies, beats, or musical phrases.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pattern | Yes | Array of note events with timing |
Input Schema (JSON Schema)
{
"properties": {
"pattern": {
"description": "Array of note events with timing",
"items": {
"properties": {
"amp": {
"type": "number"
},
"delay": {
"type": "number"
},
"duration": {
"type": "number"
},
"freq": {
"type": "number"
},
"synth": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"required": [
"pattern"
],
"type": "object"
}