Skip to content

Instantly share code, notes, and snippets.

@lonekorean
Created June 10, 2018 22:59
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 lonekorean/3016373d8f3c262cf0ece32153e183a3 to your computer and use it in GitHub Desktop.
Save lonekorean/3016373d8f3c262cf0ece32153e183a3 to your computer and use it in GitHub Desktop.
Options for goo blobs
options: {
canvasSelector: '', // to find <canvas> in DOM to draw on
radiusRange: [75, 150], // random range of body radii
xVarianceRange: [-1, 1], // random range of x velocity scaling on bodies
yVarianceRange: [0.5, 1.5], // random range of y velocity scaling on bodies
airFriction: 0.04, // air friction of bodies
opacity: 1, // opacity of bodies
collisions: false, // do bodies collide or pass through
scrollVelocity: 0.015, // scaling of scroll delta to velocity applied to bodies
pixelsPerBody: 50000, // viewport pixels required for each body added
// colors to cycle through to fill bodies
colors: ['#bad4cf']
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment