Browse Source

Revert "Drop those"

This reverts commit cfb8b5eca3.
offline
decentral1se 3 years ago
parent
commit
0e7b71525c
No known key found for this signature in database GPG Key ID: 92DAD76BD9567B8A
  1. 15
      voicegardens/static/voicegardens.js

15
voicegardens/static/voicegardens.js

@ -591,3 +591,18 @@ function draw() {
}
}
}
function mouseDragged() {
/**
* Mouse drag movement handling.
**/
toScreenX += mouseX - pmouseX;
toScreenY += mouseY - pmouseY;
}
function windowResized() {
/**
* Canvas re-draw handling.
**/
resizeCanvas(windowWidth, windowHeight);
}

Loading…
Cancel
Save