瀏覽代碼

Fixed issue of mouse move event not checking if a surface is set first.

dev-bank
Bryan Miller 6 年之前
父節點
當前提交
1249dd44a3
共有 1 個檔案被更改,包括 6 行新增4 行删除
  1. +6
    -4
      app/js/ctrls/CTRLPainter.js

+ 6
- 4
app/js/ctrls/CTRLPainter.js 查看文件

this.__brushLastPos[1] = this.__brushPos[1]; this.__brushLastPos[1] = this.__brushPos[1];
this.__brushPos[0] = e.x; this.__brushPos[0] = e.x;
this.__brushPos[1] = e.y; this.__brushPos[1] = e.y;
var x = Math.floor((this.__brushPos[0] - this.__offset[0]) * (1.0 / this.__scale));
var y = Math.floor((this.__brushPos[1] - this.__offset[1]) * (1.0 / this.__scale));
if (x >= 0 && x < this.__surface.width && y >= 0 && y < this.__surface.height){
RenderD();
if (this.__surface !== null){
var x = Math.floor((this.__brushPos[0] - this.__offset[0]) * (1.0 / this.__scale));
var y = Math.floor((this.__brushPos[1] - this.__offset[1]) * (1.0 / this.__scale));
if (x >= 0 && x < this.__surface.width && y >= 0 && y < this.__surface.height){
RenderD();
}
} }
}).bind(this); }).bind(this);
input.listen("mousemove", handle_mousemove); input.listen("mousemove", handle_mousemove);

Loading…
取消
儲存