Skip to content

Instantly share code, notes, and snippets.

@carltesta
Last active November 14, 2020 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carltesta/59406ade03822aeb43c9c9606d362a8a to your computer and use it in GitHub Desktop.
Save carltesta/59406ade03822aeb43c9c9606d362a8a to your computer and use it in GitHub Desktop.
Hydra Command Cheat Sheet
//List of Hydra Commands
//Sources
//Oscillator
//osc(frequency, sync, offset)
osc(10,0.1,5).out()
//Noise
//noise(density, sync)
noise(10,0.1).out()
//Shapes
//shape(sides, radius, smoothing)
shape(3).out() //creates a triangle
shape(4).out() //creates a rectangle
shape(3, 0.5, 0.01).out() //triangle with a different radius and minimum smoothing
//Color Gradients
//gradient(frequency)
gradient(3).out()
//Voronoi
//voronoi(density, sync)
voronoi(10,0.1).out()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment