我正在尝试检测对象是否已在鼠标向下事件上被选中,以及是否没有选择对象开始绘制fabric。因此,我不能将画布留在绘图模式下,但一旦确定鼠标下垂事件没有目标,就需要设置它。目前,我已经尝试重新触发画布上的鼠标下降事件a la:
this.canvas.on('mouse:down', function (e) {
if(e.target === null){ //the event had no target
this.isDrawingMode = true; //set the canvas to drawing mode