浏览代码

CTRLPainter now has VERY rough scaling using mouse wheel

dev-tmpl
Bryan Miller 5 年前
父节点
当前提交
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);
}



正在加载...
取消
保存