Update checkMove to only update rotation handles instead of all handles

This commit is contained in:
Ryan Huffman 2014-12-02 16:01:09 -08:00
parent 0fb0169ff2
commit 30a7b60958

View file

@ -2053,7 +2053,7 @@ SelectionDisplay = (function () {
that.checkMove = function() {
if (SelectionManager.hasSelection() &&
(!Vec3.equal(Camera.getPosition(), lastCameraPosition) || !Quat.equal(Camera.getOrientation(), lastCameraOrientation))){
that.select(selectionManager.selections[0], false, false);
that.updateRotationHandles();
}
};