Felix Roos b04a262433 Publish
- @strudel/codemirror@0.11.0
 - @strudel/core@0.11.0
 - @strudel/csound@0.11.0
 - @strudel/embed@0.11.0
 - @strudel/hydra@0.11.0
 - @strudel/midi@0.11.0
 - @strudel/mini@0.11.0
 - @strudel/osc@0.11.0
 - @strudel/repl@0.11.0
 - @strudel/serial@0.11.0
 - @strudel/soundfonts@0.11.0
 - @strudel/tonal@0.11.0
 - @strudel/transpiler@0.11.0
 - @strudel/web@0.11.0
 - @strudel/webaudio@0.11.0
 - @strudel/xen@0.11.0
2024-01-18 09:59:57 +01:00
..
2024-01-18 09:59:57 +01:00
2023-12-30 23:21:34 +01:00

@strudel/hydra

This package integrates hydra-synth into strudel.

Usage in Strudel

This package is imported into strudel by default. To activate Hydra, place this code at the top of your code:

await initHydra();

Then you can use hydra below!

options

You can also pass options to the initHydra function. These can be used to set hydra options + these strudel specific options:

  • feedStrudel: sends the strudel canvas to s0. The strudel canvas is used to draw pianoroll, spiral, scope etc..

Usage via npm

npm i @strudel/hydra

Then add the import to your evalScope:

import { evalScope } from '@strudel/core';

evalScope(
  import('@strudel/hydra')
)