Remove zoom/movement for now

This commit is contained in:
Luke Murphy 2020-01-27 11:06:25 +01:00
parent 2814887592
commit 9096a38f85
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC

View File

@ -19,10 +19,6 @@ var screenX;
var screenY;
var shapes = [];
var stopButton;
var toScreenX;
var toScreenY;
var zoom = 1;
var zoomSensitivity = 0.005;
function record() {
/**
* Starting recording.
@ -223,8 +219,6 @@ function setup() {
* The p5.js initial setup function.
**/
createCanvas(windowWidth, windowHeight);
screenX = toScreenX = 0;
screenY = toScreenY = 0;
setupRecording();
frameRate(frameRate);
fill("#F38630");
@ -236,12 +230,6 @@ function draw() {
**/
background("#69D2E7");
screenX = lerp(screenX, toScreenX, 0.1);
screenY = lerp(screenY, toScreenY, 0.1);
translate(screenX, screenY);
scale(zoom);
if (newSoundJustRecorded === true) {
shapes.push(new GeneratedShape());
newSoundJustRecorded = false;
@ -256,25 +244,3 @@ function draw() {
}
}
}
function mouseWheel(event) {
/**
* Mouse wheel zoom handling.
**/
zoom += zoomSensitivity * event.delta;
}
function mouseDragged() {
/**
* Mouse drag movement handling.
**/
toScreenX += mouseX - pmouseX;
toScreenY += mouseY - pmouseY;
}
function windowResized() {
/**
* Canvas re-draw handling.
**/
resizeCanvas(windowWidth, windowHeight);
}