소스 검색

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 파일 보기

@@ -217,10 +217,12 @@ class CTRLPainter {
this.__brushLastPos[1] = this.__brushPos[1];
this.__brushPos[0] = e.x;
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);
input.listen("mousemove", handle_mousemove);

Loading…
취소
저장