Delete 'example-p5/JS/sketch.js'
This commit is contained in:
parent
04c57d5c26
commit
2834c8266c
@ -1,23 +0,0 @@
|
||||
/* based on tutorial #6: p5.js Sketch as Background @ The Code Train */
|
||||
|
||||
var canvas;
|
||||
var mic;
|
||||
|
||||
function windowResized() {
|
||||
resizeCanvas(windowWidth,windowHeight)
|
||||
}
|
||||
|
||||
function setup () {
|
||||
canvas = createCanvas(windowWidth,windowHeight)
|
||||
canvas.position(0,0);
|
||||
canvas.style('z-index', '-1')
|
||||
mic = new p5.AudioIn();
|
||||
mic.start()
|
||||
}
|
||||
|
||||
function draw () {
|
||||
background('#88afff');
|
||||
describe('canvas with light blue background');
|
||||
var vol = mic.getLevel();
|
||||
ellipse(width/2, height/2, vol*100)
|
||||
}
|
Loading…
Reference in New Issue
Block a user