Last active
November 14, 2020 18:12
-
-
Save carltesta/59406ade03822aeb43c9c9606d362a8a to your computer and use it in GitHub Desktop.
Hydra Command Cheat Sheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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