Removed useless log, and fix previsualization on arrow

这个提交包含在:
Thomas FORGIONE 2015-05-21 11:13:16 +02:00
父节点 a31c71513a
当前提交 a6f637223f
共有 2 个文件被更改,包括 7 次插入5 次删除

查看文件

@ -15,7 +15,6 @@ module.exports.index = function(req, res) {
req.body.time
],
function(err, result) {
console.log(err);
release();
}
);

查看文件

@ -47,8 +47,8 @@ CameraSelecter.prototype.pointedCamera = function() {
return coins[coin];
}
}
return this.cameras.getByObject(intersects[bestIndex].object);
this.currentPointedCamera = this.cameras.getByObject(intersects[bestIndex].object);
return this.currentPointedCamera;
// }
}
}
@ -60,11 +60,14 @@ CameraSelecter.prototype.update = function(event) {
this.mouse.y = event.offsetY == undefined ? event.layerY : event.offsetY;
}
var previousCamera = this.currentPointedCamera;
var hovered = this.pointedCamera(event);
if (hovered !== undefined && !(hovered instanceof Coin)) {
this.prev.x = this.mouse.x;
this.prev.y = this.mouse.y;
if (hovered !== previousCamera) {
this.prev.x = this.mouse.x;
this.prev.y = this.mouse.y;
}
this.prev.camera = hovered;
this.prev.go = true;
} else {