decentral1se
4 years ago
No known key found for this signature in database
GPG Key ID: 92DAD76BD9567B8A
1 changed files with
15 additions and
0 deletions
-
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); |
|
|
|
|
|
} |
|
|