소스 검색

CTRLPainter now has VERY rough scaling using mouse wheel

dev-tmpl
Bryan Miller 6 년 전
부모
커밋
f5b3d77a03
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. +11
    -0
      app/js/ctrls/CTRLPainter.js

+ 11
- 0
app/js/ctrls/CTRLPainter.js 파일 보기

@@ -104,6 +104,17 @@ class CTRLPainter {
this.render();
}).bind(this);
input.listen("shift+mouseleft+mousemove", handle_offset);

var handle_scale = (function(e){
if (e.delta < 0){
this.scale_down();
} else if (e.delta > 0){
this.scale_up();
}
if (e.delta !== 0)
this.render();
}).bind(this);
input.listen("wheel", handle_scale);
}



Loading…
취소
저장