Felix Roos 051bdaccc7 Publish
- @strudel/codemirror@1.0.1
 - @strudel/core@1.0.1
 - @strudel/csound@1.0.1
 - @strudel/hydra@1.0.1
 - @strudel/midi@1.0.1
 - @strudel/mini@1.0.1
 - @strudel/osc@1.0.1
 - @strudel/repl@1.0.1
 - @strudel/serial@1.0.1
 - @strudel/soundfonts@1.0.1
 - superdough@1.0.1
 - @strudel/tonal@1.0.1
 - @strudel/transpiler@1.0.1
 - @strudel/web@1.0.1
 - @strudel/webaudio@1.0.1
 - @strudel/xen@1.0.1
2024-02-08 13:04:25 +01:00
..
2024-02-08 13:04:25 +01:00
2024-02-08 12:19:11 +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')
)