remove space bar behavior from editrVoxels.js

This commit is contained in:
ZappoMan 2014-03-10 16:44:33 -07:00
parent de8165c544
commit 06a0332fd5

View file

@ -927,13 +927,6 @@ function keyPressEvent(event) {
}
}
// do this even if not in edit tools
if (event.text == " ") {
// Reset my orientation!
var orientation = { x:0, y:0, z:0, w:1 };
Camera.setOrientation(orientation);
MyAvatar.orientation = orientation;
}
trackKeyPressEvent(event); // used by preview support
}