Skip to content

Commit

Permalink
Update adding_synthesizers.md
Browse files Browse the repository at this point in the history
Adding details on the postTidalParameters command.
  • Loading branch information
HighHarmonics2 authored Dec 5, 2023
1 parent 3103a03 commit 92df5f7
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions docs/configuration/adding_synthesizers.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,21 @@ let pit = pF "pit"
let model = pI "model"
```



### Listing Tidal paramenters
From SuperCollider, you can generate a Tidal parameter list for any SuperDirt SynthDef:
```
SuperDirt.postTidalParameters([\imp, \default]);
SuperDirt.postTidalParameters([\supersaw, \default])
```
This will generate the exact parameters registered with Tidal for the "imp" or "supersaw" synths.
```
-- | parameters for the SynthDefs: imp, default
let (begin, begin_p) = pF "begin" (Nothing)
(end, end_p) = pF "end" (Nothing)
(freq, freq_p) = pF "freq" (Nothing)
(span, span_p) = pF "span" (Nothing)
(speed, speed_p) = pF "speed" (Nothing)
```

## Troubleshooting

Expand Down

0 comments on commit 92df5f7

Please sign in to comment.