Flock example: space bar toggles selection state of items in the document.

This commit is contained in:
Jonathan Puckey 2011-04-28 20:57:04 +02:00
parent b1d8922fd1
commit de466edc23

View file

@ -273,6 +273,12 @@
groupTogether = !groupTogether;
}
var layer = document.activeLayer;
function onKeyDown(event) {
if (event.character == 'space')
layer.selected = !layer.selected;
}
// Resize the document, whenever the window is resized,
window.onresize = function(event) {
document.size = [window.innerWidth, window.innerHeight];