mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-10 21:28:31 +00:00
807 B
807 B
@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 tos0. The strudel canvas is used to drawpianoroll,spiral,scopeetc..
Usage via npm
npm i @strudel/hydra
Then add the import to your evalScope:
import { evalScope } from '@strudel/core';
evalScope(
import('@strudel/hydra')
)